mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
core, eth, ethstats: simplify chain head events
This commit is contained in:
parent
4c4219e405
commit
1a027994ac
11 changed files with 53 additions and 73 deletions
|
|
@ -571,15 +571,14 @@ func (bc *BlockChain) SetHead(head uint64) error {
|
||||||
}
|
}
|
||||||
// Send chain head event to update the transaction pool
|
// Send chain head event to update the transaction pool
|
||||||
header := bc.CurrentBlock()
|
header := bc.CurrentBlock()
|
||||||
block := bc.GetBlock(header.Hash(), header.Number.Uint64())
|
if block := bc.GetBlock(header.Hash(), header.Number.Uint64()); block == nil {
|
||||||
if block == nil {
|
|
||||||
// This should never happen. In practice, previously currentBlock
|
// This should never happen. In practice, previously currentBlock
|
||||||
// contained the entire block whereas now only a "marker", so there
|
// contained the entire block whereas now only a "marker", so there
|
||||||
// is an ever so slight chance for a race we should handle.
|
// is an ever so slight chance for a race we should handle.
|
||||||
log.Error("Current block not found in database", "block", header.Number, "hash", header.Hash())
|
log.Error("Current block not found in database", "block", header.Number, "hash", header.Hash())
|
||||||
return fmt.Errorf("current block missing: #%d [%x..]", header.Number, header.Hash().Bytes()[:4])
|
return fmt.Errorf("current block missing: #%d [%x..]", header.Number, header.Hash().Bytes()[:4])
|
||||||
}
|
}
|
||||||
bc.chainHeadFeed.Send(ChainHeadEvent{Block: block})
|
bc.chainHeadFeed.Send(ChainHeadEvent{Header: header})
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -593,15 +592,14 @@ func (bc *BlockChain) SetHeadWithTimestamp(timestamp uint64) error {
|
||||||
}
|
}
|
||||||
// Send chain head event to update the transaction pool
|
// Send chain head event to update the transaction pool
|
||||||
header := bc.CurrentBlock()
|
header := bc.CurrentBlock()
|
||||||
block := bc.GetBlock(header.Hash(), header.Number.Uint64())
|
if block := bc.GetBlock(header.Hash(), header.Number.Uint64()); block == nil {
|
||||||
if block == nil {
|
|
||||||
// This should never happen. In practice, previously currentBlock
|
// This should never happen. In practice, previously currentBlock
|
||||||
// contained the entire block whereas now only a "marker", so there
|
// contained the entire block whereas now only a "marker", so there
|
||||||
// is an ever so slight chance for a race we should handle.
|
// is an ever so slight chance for a race we should handle.
|
||||||
log.Error("Current block not found in database", "block", header.Number, "hash", header.Hash())
|
log.Error("Current block not found in database", "block", header.Number, "hash", header.Hash())
|
||||||
return fmt.Errorf("current block missing: #%d [%x..]", header.Number, header.Hash().Bytes()[:4])
|
return fmt.Errorf("current block missing: #%d [%x..]", header.Number, header.Hash().Bytes()[:4])
|
||||||
}
|
}
|
||||||
bc.chainHeadFeed.Send(ChainHeadEvent{Block: block})
|
bc.chainHeadFeed.Send(ChainHeadEvent{Header: header})
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1552,7 +1550,7 @@ func (bc *BlockChain) writeBlockAndSetHead(block *types.Block, receipts []*types
|
||||||
// Set new head.
|
// Set new head.
|
||||||
bc.writeHeadBlock(block)
|
bc.writeHeadBlock(block)
|
||||||
|
|
||||||
bc.chainFeed.Send(ChainEvent{Block: block, Hash: block.Hash(), Logs: logs})
|
bc.chainFeed.Send(ChainEvent{Header: block.Header()})
|
||||||
if len(logs) > 0 {
|
if len(logs) > 0 {
|
||||||
bc.logsFeed.Send(logs)
|
bc.logsFeed.Send(logs)
|
||||||
}
|
}
|
||||||
|
|
@ -1562,7 +1560,7 @@ func (bc *BlockChain) writeBlockAndSetHead(block *types.Block, receipts []*types
|
||||||
// we will fire an accumulated ChainHeadEvent and disable fire
|
// we will fire an accumulated ChainHeadEvent and disable fire
|
||||||
// event here.
|
// event here.
|
||||||
if emitHeadEvent {
|
if emitHeadEvent {
|
||||||
bc.chainHeadFeed.Send(ChainHeadEvent{Block: block})
|
bc.chainHeadFeed.Send(ChainHeadEvent{Header: block.Header()})
|
||||||
}
|
}
|
||||||
return CanonStatTy, nil
|
return CanonStatTy, nil
|
||||||
}
|
}
|
||||||
|
|
@ -1627,7 +1625,7 @@ func (bc *BlockChain) insertChain(chain types.Blocks, setHead bool, makeWitness
|
||||||
// Fire a single chain head event if we've progressed the chain
|
// Fire a single chain head event if we've progressed the chain
|
||||||
defer func() {
|
defer func() {
|
||||||
if lastCanon != nil && bc.CurrentBlock().Hash() == lastCanon.Hash() {
|
if lastCanon != nil && bc.CurrentBlock().Hash() == lastCanon.Hash() {
|
||||||
bc.chainHeadFeed.Send(ChainHeadEvent{lastCanon})
|
bc.chainHeadFeed.Send(ChainHeadEvent{Header: lastCanon.Header()})
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
// Start the parallel header verifier
|
// Start the parallel header verifier
|
||||||
|
|
@ -2329,7 +2327,7 @@ func (bc *BlockChain) reorg(oldHead *types.Header, newHead *types.Block) error {
|
||||||
var deletedLogs []*types.Log
|
var deletedLogs []*types.Log
|
||||||
for i := len(oldChain) - 1; i >= 0; i-- {
|
for i := len(oldChain) - 1; i >= 0; i-- {
|
||||||
// Also send event for blocks removed from the canon chain.
|
// Also send event for blocks removed from the canon chain.
|
||||||
bc.chainSideFeed.Send(ChainSideEvent{Block: oldChain[i]})
|
bc.chainSideFeed.Send(ChainSideEvent{Header: oldChain[i].Header()})
|
||||||
|
|
||||||
// Collect deleted logs for notification
|
// Collect deleted logs for notification
|
||||||
if logs := bc.collectLogs(oldChain[i], true); len(logs) > 0 {
|
if logs := bc.collectLogs(oldChain[i], true); len(logs) > 0 {
|
||||||
|
|
@ -2403,11 +2401,11 @@ func (bc *BlockChain) SetCanonical(head *types.Block) (common.Hash, error) {
|
||||||
|
|
||||||
// Emit events
|
// Emit events
|
||||||
logs := bc.collectLogs(head, false)
|
logs := bc.collectLogs(head, false)
|
||||||
bc.chainFeed.Send(ChainEvent{Block: head, Hash: head.Hash(), Logs: logs})
|
bc.chainFeed.Send(ChainEvent{Header: head.Header()})
|
||||||
if len(logs) > 0 {
|
if len(logs) > 0 {
|
||||||
bc.logsFeed.Send(logs)
|
bc.logsFeed.Send(logs)
|
||||||
}
|
}
|
||||||
bc.chainHeadFeed.Send(ChainHeadEvent{Block: head})
|
bc.chainHeadFeed.Send(ChainHeadEvent{Header: head.Header()})
|
||||||
|
|
||||||
context := []interface{}{
|
context := []interface{}{
|
||||||
"number", head.Number(),
|
"number", head.Number(),
|
||||||
|
|
|
||||||
|
|
@ -1385,9 +1385,8 @@ done:
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case ev := <-chainSideCh:
|
case ev := <-chainSideCh:
|
||||||
block := ev.Block
|
if _, ok := expectedSideHashes[ev.Header.Hash()]; !ok {
|
||||||
if _, ok := expectedSideHashes[block.Hash()]; !ok {
|
t.Errorf("%d: didn't expect %x to be in side chain", i, ev.Header.Hash())
|
||||||
t.Errorf("%d: didn't expect %x to be in side chain", i, block.Hash())
|
|
||||||
}
|
}
|
||||||
i++
|
i++
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -222,20 +222,19 @@ func (c *ChainIndexer) eventLoop(currentHeader *types.Header, events chan ChainH
|
||||||
errc <- nil
|
errc <- nil
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
header := ev.Block.Header()
|
if ev.Header.ParentHash != prevHash {
|
||||||
if header.ParentHash != prevHash {
|
|
||||||
// Reorg to the common ancestor if needed (might not exist in light sync mode, skip reorg then)
|
// Reorg to the common ancestor if needed (might not exist in light sync mode, skip reorg then)
|
||||||
// TODO(karalabe, zsfelfoldi): This seems a bit brittle, can we detect this case explicitly?
|
// TODO(karalabe, zsfelfoldi): This seems a bit brittle, can we detect this case explicitly?
|
||||||
|
|
||||||
if rawdb.ReadCanonicalHash(c.chainDb, prevHeader.Number.Uint64()) != prevHash {
|
if rawdb.ReadCanonicalHash(c.chainDb, prevHeader.Number.Uint64()) != prevHash {
|
||||||
if h := rawdb.FindCommonAncestor(c.chainDb, prevHeader, header); h != nil {
|
if h := rawdb.FindCommonAncestor(c.chainDb, prevHeader, ev.Header); h != nil {
|
||||||
c.newHead(h.Number.Uint64(), true)
|
c.newHead(h.Number.Uint64(), true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
c.newHead(header.Number.Uint64(), false)
|
c.newHead(ev.Header.Number.Uint64(), false)
|
||||||
|
|
||||||
prevHeader, prevHash = header, header.Hash()
|
prevHeader, prevHash = ev.Header, ev.Header.Hash()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,6 @@
|
||||||
package core
|
package core
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/ethereum/go-ethereum/common"
|
|
||||||
"github.com/ethereum/go-ethereum/core/types"
|
"github.com/ethereum/go-ethereum/core/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -31,13 +30,13 @@ type NewMinedBlockEvent struct{ Block *types.Block }
|
||||||
type RemovedLogsEvent struct{ Logs []*types.Log }
|
type RemovedLogsEvent struct{ Logs []*types.Log }
|
||||||
|
|
||||||
type ChainEvent struct {
|
type ChainEvent struct {
|
||||||
Block *types.Block
|
Header *types.Header
|
||||||
Hash common.Hash
|
|
||||||
Logs []*types.Log
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type ChainSideEvent struct {
|
type ChainSideEvent struct {
|
||||||
Block *types.Block
|
Header *types.Header
|
||||||
}
|
}
|
||||||
|
|
||||||
type ChainHeadEvent struct{ Block *types.Block }
|
type ChainHeadEvent struct {
|
||||||
|
Header *types.Header
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -151,9 +151,9 @@ func (indexer *txIndexer) loop(chain *BlockChain) {
|
||||||
if done == nil {
|
if done == nil {
|
||||||
stop = make(chan struct{})
|
stop = make(chan struct{})
|
||||||
done = make(chan struct{})
|
done = make(chan struct{})
|
||||||
go indexer.run(rawdb.ReadTxIndexTail(indexer.db), head.Block.NumberU64(), stop, done)
|
go indexer.run(rawdb.ReadTxIndexTail(indexer.db), head.Header.Number.Uint64(), stop, done)
|
||||||
}
|
}
|
||||||
lastHead = head.Block.NumberU64()
|
lastHead = head.Header.Number.Uint64()
|
||||||
case <-done:
|
case <-done:
|
||||||
stop = nil
|
stop = nil
|
||||||
done = nil
|
done = nil
|
||||||
|
|
|
||||||
|
|
@ -243,7 +243,7 @@ func (p *TxPool) loop(head *types.Header, chain BlockChain) {
|
||||||
select {
|
select {
|
||||||
case event := <-newHeadCh:
|
case event := <-newHeadCh:
|
||||||
// Chain moved forward, store the head for later consumption
|
// Chain moved forward, store the head for later consumption
|
||||||
newHead = event.Block.Header()
|
newHead = event.Header
|
||||||
|
|
||||||
case head := <-resetDone:
|
case head := <-resetDone:
|
||||||
// Previous reset finished, update the old head and allow a new reset
|
// Previous reset finished, update the old head and allow a new reset
|
||||||
|
|
|
||||||
|
|
@ -123,16 +123,16 @@ func TestSimulatedBeaconSendWithdrawals(t *testing.T) {
|
||||||
timer := time.NewTimer(12 * time.Second)
|
timer := time.NewTimer(12 * time.Second)
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case evt := <-chainHeadCh:
|
case ev := <-chainHeadCh:
|
||||||
for _, includedTx := range evt.Block.Transactions() {
|
block := ethService.BlockChain().GetBlock(ev.Header.Hash(), ev.Header.Number.Uint64())
|
||||||
|
for _, includedTx := range block.Transactions() {
|
||||||
includedTxs[includedTx.Hash()] = struct{}{}
|
includedTxs[includedTx.Hash()] = struct{}{}
|
||||||
}
|
}
|
||||||
for _, includedWithdrawal := range evt.Block.Withdrawals() {
|
for _, includedWithdrawal := range block.Withdrawals() {
|
||||||
includedWithdrawals = append(includedWithdrawals, includedWithdrawal.Index)
|
includedWithdrawals = append(includedWithdrawals, includedWithdrawal.Index)
|
||||||
}
|
}
|
||||||
|
|
||||||
// ensure all withdrawals/txs included. this will take two blocks b/c number of withdrawals > 10
|
// ensure all withdrawals/txs included. this will take two blocks b/c number of withdrawals > 10
|
||||||
if len(includedTxs) == len(txs) && len(includedWithdrawals) == len(withdrawals) && evt.Block.Number().Cmp(big.NewInt(2)) == 0 {
|
if len(includedTxs) == len(txs) && len(includedWithdrawals) == len(withdrawals) && ev.Header.Number.Cmp(big.NewInt(2)) == 0 {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
case <-timer.C:
|
case <-timer.C:
|
||||||
|
|
@ -186,11 +186,12 @@ func TestOnDemandSpam(t *testing.T) {
|
||||||
)
|
)
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case evt := <-chainHeadCh:
|
case ev := <-chainHeadCh:
|
||||||
for _, itx := range evt.Block.Transactions() {
|
block := eth.BlockChain().GetBlock(ev.Header.Hash(), ev.Header.Number.Uint64())
|
||||||
|
for _, itx := range block.Transactions() {
|
||||||
includedTxs[itx.Hash()] = struct{}{}
|
includedTxs[itx.Hash()] = struct{}{}
|
||||||
}
|
}
|
||||||
for _, iwx := range evt.Block.Withdrawals() {
|
for _, iwx := range block.Withdrawals() {
|
||||||
includedWxs = append(includedWxs, iwx.Index)
|
includedWxs = append(includedWxs, iwx.Index)
|
||||||
}
|
}
|
||||||
// ensure all withdrawals/txs included. this will take two blocks b/c number of withdrawals > 10
|
// ensure all withdrawals/txs included. this will take two blocks b/c number of withdrawals > 10
|
||||||
|
|
|
||||||
|
|
@ -391,7 +391,7 @@ func (es *EventSystem) handleTxsEvent(filters filterIndex, ev core.NewTxsEvent)
|
||||||
|
|
||||||
func (es *EventSystem) handleChainEvent(filters filterIndex, ev core.ChainEvent) {
|
func (es *EventSystem) handleChainEvent(filters filterIndex, ev core.ChainEvent) {
|
||||||
for _, f := range filters[BlocksSubscription] {
|
for _, f := range filters[BlocksSubscription] {
|
||||||
f.headers <- ev.Block.Header()
|
f.headers <- ev.Header
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -200,7 +200,7 @@ func TestBlockSubscription(t *testing.T) {
|
||||||
)
|
)
|
||||||
|
|
||||||
for _, blk := range chain {
|
for _, blk := range chain {
|
||||||
chainEvents = append(chainEvents, core.ChainEvent{Hash: blk.Hash(), Block: blk})
|
chainEvents = append(chainEvents, core.ChainEvent{Header: blk.Header()})
|
||||||
}
|
}
|
||||||
|
|
||||||
chan0 := make(chan *types.Header)
|
chan0 := make(chan *types.Header)
|
||||||
|
|
@ -213,13 +213,13 @@ func TestBlockSubscription(t *testing.T) {
|
||||||
for i1 != len(chainEvents) || i2 != len(chainEvents) {
|
for i1 != len(chainEvents) || i2 != len(chainEvents) {
|
||||||
select {
|
select {
|
||||||
case header := <-chan0:
|
case header := <-chan0:
|
||||||
if chainEvents[i1].Hash != header.Hash() {
|
if chainEvents[i1].Header.Hash() != header.Hash() {
|
||||||
t.Errorf("sub0 received invalid hash on index %d, want %x, got %x", i1, chainEvents[i1].Hash, header.Hash())
|
t.Errorf("sub0 received invalid hash on index %d, want %x, got %x", i1, chainEvents[i1].Header.Hash(), header.Hash())
|
||||||
}
|
}
|
||||||
i1++
|
i1++
|
||||||
case header := <-chan1:
|
case header := <-chan1:
|
||||||
if chainEvents[i2].Hash != header.Hash() {
|
if chainEvents[i2].Header.Hash() != header.Hash() {
|
||||||
t.Errorf("sub1 received invalid hash on index %d, want %x, got %x", i2, chainEvents[i2].Hash, header.Hash())
|
t.Errorf("sub1 received invalid hash on index %d, want %x, got %x", i2, chainEvents[i2].Header.Hash(), header.Hash())
|
||||||
}
|
}
|
||||||
i2++
|
i2++
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -124,10 +124,10 @@ func NewOracle(backend OracleBackend, params Config, startPrice *big.Int) *Oracl
|
||||||
go func() {
|
go func() {
|
||||||
var lastHead common.Hash
|
var lastHead common.Hash
|
||||||
for ev := range headEvent {
|
for ev := range headEvent {
|
||||||
if ev.Block.ParentHash() != lastHead {
|
if ev.Header.ParentHash != lastHead {
|
||||||
cache.Purge()
|
cache.Purge()
|
||||||
}
|
}
|
||||||
lastHead = ev.Block.Hash()
|
lastHead = ev.Header.Hash()
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -219,7 +219,7 @@ func (s *Service) loop(chainHeadCh chan core.ChainHeadEvent, txEventCh chan core
|
||||||
// Start a goroutine that exhausts the subscriptions to avoid events piling up
|
// Start a goroutine that exhausts the subscriptions to avoid events piling up
|
||||||
var (
|
var (
|
||||||
quitCh = make(chan struct{})
|
quitCh = make(chan struct{})
|
||||||
headCh = make(chan *types.Block, 1)
|
headCh = make(chan *types.Header, 1)
|
||||||
txCh = make(chan struct{}, 1)
|
txCh = make(chan struct{}, 1)
|
||||||
)
|
)
|
||||||
go func() {
|
go func() {
|
||||||
|
|
@ -231,7 +231,7 @@ func (s *Service) loop(chainHeadCh chan core.ChainHeadEvent, txEventCh chan core
|
||||||
// Notify of chain head events, but drop if too frequent
|
// Notify of chain head events, but drop if too frequent
|
||||||
case head := <-chainHeadCh:
|
case head := <-chainHeadCh:
|
||||||
select {
|
select {
|
||||||
case headCh <- head.Block:
|
case headCh <- head.Header:
|
||||||
default:
|
default:
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -602,9 +602,9 @@ func (s uncleStats) MarshalJSON() ([]byte, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// reportBlock retrieves the current chain head and reports it to the stats server.
|
// reportBlock retrieves the current chain head and reports it to the stats server.
|
||||||
func (s *Service) reportBlock(conn *connWrapper, block *types.Block) error {
|
func (s *Service) reportBlock(conn *connWrapper, header *types.Header) error {
|
||||||
// Gather the block details from the header or block chain
|
// Gather the block details from the header or block chain
|
||||||
details := s.assembleBlockStats(block)
|
details := s.assembleBlockStats(header)
|
||||||
|
|
||||||
// Short circuit if the block detail is not available.
|
// Short circuit if the block detail is not available.
|
||||||
if details == nil {
|
if details == nil {
|
||||||
|
|
@ -625,10 +625,9 @@ func (s *Service) reportBlock(conn *connWrapper, block *types.Block) error {
|
||||||
|
|
||||||
// assembleBlockStats retrieves any required metadata to report a single block
|
// assembleBlockStats retrieves any required metadata to report a single block
|
||||||
// and assembles the block stats. If block is nil, the current head is processed.
|
// and assembles the block stats. If block is nil, the current head is processed.
|
||||||
func (s *Service) assembleBlockStats(block *types.Block) *blockStats {
|
func (s *Service) assembleBlockStats(header *types.Header) *blockStats {
|
||||||
// Gather the block infos from the local blockchain
|
// Gather the block infos from the local blockchain
|
||||||
var (
|
var (
|
||||||
header *types.Header
|
|
||||||
td *big.Int
|
td *big.Int
|
||||||
txs []txStats
|
txs []txStats
|
||||||
uncles []*types.Header
|
uncles []*types.Header
|
||||||
|
|
@ -638,16 +637,13 @@ func (s *Service) assembleBlockStats(block *types.Block) *blockStats {
|
||||||
fullBackend, ok := s.backend.(fullNodeBackend)
|
fullBackend, ok := s.backend.(fullNodeBackend)
|
||||||
if ok {
|
if ok {
|
||||||
// Retrieve current chain head if no block is given.
|
// Retrieve current chain head if no block is given.
|
||||||
if block == nil {
|
if header == nil {
|
||||||
head := fullBackend.CurrentBlock()
|
header = fullBackend.CurrentBlock()
|
||||||
block, _ = fullBackend.BlockByNumber(context.Background(), rpc.BlockNumber(head.Number.Uint64()))
|
|
||||||
}
|
}
|
||||||
// Short circuit if no block is available. It might happen when
|
block, _ := fullBackend.BlockByNumber(context.Background(), rpc.BlockNumber(header.Number.Uint64()))
|
||||||
// the blockchain is reorging.
|
|
||||||
if block == nil {
|
if block == nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
header = block.Header()
|
|
||||||
td = fullBackend.GetTd(context.Background(), header.Hash())
|
td = fullBackend.GetTd(context.Background(), header.Hash())
|
||||||
|
|
||||||
txs = make([]txStats, len(block.Transactions()))
|
txs = make([]txStats, len(block.Transactions()))
|
||||||
|
|
@ -657,15 +653,12 @@ func (s *Service) assembleBlockStats(block *types.Block) *blockStats {
|
||||||
uncles = block.Uncles()
|
uncles = block.Uncles()
|
||||||
} else {
|
} else {
|
||||||
// Light nodes would need on-demand lookups for transactions/uncles, skip
|
// Light nodes would need on-demand lookups for transactions/uncles, skip
|
||||||
if block != nil {
|
if header == nil {
|
||||||
header = block.Header()
|
|
||||||
} else {
|
|
||||||
header = s.backend.CurrentHeader()
|
header = s.backend.CurrentHeader()
|
||||||
}
|
}
|
||||||
td = s.backend.GetTd(context.Background(), header.Hash())
|
td = s.backend.GetTd(context.Background(), header.Hash())
|
||||||
txs = []txStats{}
|
txs = []txStats{}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Assemble and return the block stats
|
// Assemble and return the block stats
|
||||||
author, _ := s.engine.Author(header)
|
author, _ := s.engine.Author(header)
|
||||||
|
|
||||||
|
|
@ -708,19 +701,10 @@ func (s *Service) reportHistory(conn *connWrapper, list []uint64) error {
|
||||||
// Gather the batch of blocks to report
|
// Gather the batch of blocks to report
|
||||||
history := make([]*blockStats, len(indexes))
|
history := make([]*blockStats, len(indexes))
|
||||||
for i, number := range indexes {
|
for i, number := range indexes {
|
||||||
fullBackend, ok := s.backend.(fullNodeBackend)
|
|
||||||
// Retrieve the next block if it's known to us
|
// Retrieve the next block if it's known to us
|
||||||
var block *types.Block
|
header, _ := s.backend.HeaderByNumber(context.Background(), rpc.BlockNumber(number))
|
||||||
if ok {
|
if header != nil {
|
||||||
block, _ = fullBackend.BlockByNumber(context.Background(), rpc.BlockNumber(number)) // TODO ignore error here ?
|
history[len(history)-1-i] = s.assembleBlockStats(header)
|
||||||
} else {
|
|
||||||
if header, _ := s.backend.HeaderByNumber(context.Background(), rpc.BlockNumber(number)); header != nil {
|
|
||||||
block = types.NewBlockWithHeader(header)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// If we do have the block, add to the history and continue
|
|
||||||
if block != nil {
|
|
||||||
history[len(history)-1-i] = s.assembleBlockStats(block)
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
// Ran out of blocks, cut the report short and send
|
// Ran out of blocks, cut the report short and send
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue