2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-04-17 23:11:09 +00:00
|
|
|
package eth
|
|
|
|
|
|
|
|
import (
|
2015-09-01 14:35:14 +00:00
|
|
|
"errors"
|
2015-06-04 15:46:07 +00:00
|
|
|
"math"
|
2015-07-09 10:55:06 +00:00
|
|
|
"math/big"
|
2015-04-17 23:11:09 +00:00
|
|
|
"sync"
|
2016-05-17 11:17:20 +00:00
|
|
|
"sync/atomic"
|
2015-04-24 12:40:32 +00:00
|
|
|
"time"
|
2015-04-17 23:11:09 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
all: core rework for the merge transition (#23761)
* all: work for eth1/2 transtition
* consensus/beacon, eth: change beacon difficulty to 0
* eth: updates
* all: add terminalBlockDifficulty config, fix rebasing issues
* eth: implemented merge interop spec
* internal/ethapi: update to v1.0.0.alpha.2
This commit updates the code to the new spec, moving payloadId into
it's own object. It also fixes an issue with finalizing an empty blockhash.
It also properly sets the basefee
* all: sync polishes, other fixes + refactors
* core, eth: correct semantics for LeavePoW, EnterPoS
* core: fixed rebasing artifacts
* core: light: performance improvements
* core: use keyed field (f)
* core: eth: fix compilation issues + tests
* eth/catalyst: dbetter error codes
* all: move Merger to consensus/, remove reliance on it in bc
* all: renamed EnterPoS and LeavePoW to ReachTDD and FinalizePoS
* core: make mergelogs a function
* core: use InsertChain instead of InsertBlock
* les: drop merger from lightchain object
* consensus: add merger
* core: recoverAncestors in catalyst mode
* core: fix nitpick
* all: removed merger from beacon, use TTD, nitpicks
* consensus: eth: add docstring, removed unnecessary code duplication
* consensus/beacon: better comment
* all: easy to fix nitpicks by karalabe
* consensus/beacon: verify known headers to be sure
* core: comments
* core: eth: don't drop peers who advertise blocks, nitpicks
* core: never add beacon blocks to the future queue
* core: fixed nitpicks
* consensus/beacon: simplify IsTTDReached check
* consensus/beacon: correct IsTTDReached check
Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-11-26 11:23:02 +00:00
|
|
|
"github.com/ethereum/go-ethereum/consensus"
|
|
|
|
"github.com/ethereum/go-ethereum/consensus/beacon"
|
2015-04-18 00:21:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2019-09-30 18:28:50 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/forkid"
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 19:21:36 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
2023-06-16 12:29:40 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/txpool"
|
2015-04-17 23:11:09 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/eth/downloader"
|
2015-06-17 13:53:28 +00:00
|
|
|
"github.com/ethereum/go-ethereum/eth/fetcher"
|
2020-12-14 09:27:15 +00:00
|
|
|
"github.com/ethereum/go-ethereum/eth/protocols/eth"
|
|
|
|
"github.com/ethereum/go-ethereum/eth/protocols/snap"
|
2015-09-14 07:35:57 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethdb"
|
2015-04-22 15:56:06 +00:00
|
|
|
"github.com/ethereum/go-ethereum/event"
|
2017-02-22 12:10:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/log"
|
2023-07-06 14:20:31 +00:00
|
|
|
"github.com/ethereum/go-ethereum/metrics"
|
2015-04-17 23:11:09 +00:00
|
|
|
"github.com/ethereum/go-ethereum/p2p"
|
2024-02-13 13:49:53 +00:00
|
|
|
"github.com/ethereum/go-ethereum/triedb/pathdb"
|
2015-04-17 23:11:09 +00:00
|
|
|
)
|
|
|
|
|
2015-09-07 17:43:01 +00:00
|
|
|
const (
|
2018-05-18 08:45:52 +00:00
|
|
|
// txChanSize is the size of channel listening to NewTxsEvent.
|
2017-08-18 10:58:36 +00:00
|
|
|
// The number is referenced from the size of tx pool.
|
|
|
|
txChanSize = 4096
|
2023-06-28 09:06:20 +00:00
|
|
|
|
|
|
|
// txMaxBroadcastSize is the max size of a transaction that will be broadcasted.
|
|
|
|
// All transactions with a higher size will be announced and need to be fetched
|
|
|
|
// by the peer.
|
|
|
|
txMaxBroadcastSize = 4096
|
2015-09-07 17:43:01 +00:00
|
|
|
)
|
2015-06-09 10:00:41 +00:00
|
|
|
|
2023-09-28 10:15:50 +00:00
|
|
|
var syncChallengeTimeout = 15 * time.Second // Time allowance for a node to reply to the sync progress challenge
|
2016-07-08 17:59:11 +00:00
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
// txPool defines the methods needed from a transaction pool implementation to
|
|
|
|
// support all the operations needed by the Ethereum chain protocols.
|
|
|
|
type txPool interface {
|
|
|
|
// Has returns an indicator whether txpool has a transaction
|
|
|
|
// cached with the given hash.
|
|
|
|
Has(hash common.Hash) bool
|
|
|
|
|
|
|
|
// Get retrieves the transaction from local txpool with given
|
|
|
|
// tx hash.
|
core/types: support for optional blob sidecar in BlobTx (#27841)
This PR removes the newly added txpool.Transaction wrapper type, and instead adds a way
of keeping the blob sidecar within types.Transaction. It's better this way because most
code in go-ethereum does not care about blob transactions, and probably never will. This
will start mattering especially on the client side of RPC, where all APIs are based on
types.Transaction. Users need to be able to use the same signing flows they already
have.
However, since blobs are only allowed in some places but not others, we will now need to
add checks to avoid creating invalid blocks. I'm still trying to figure out the best place
to do some of these. The way I have it currently is as follows:
- In block validation (import), txs are verified not to have a blob sidecar.
- In miner, we strip off the sidecar when committing the transaction into the block.
- In TxPool validation, txs must have a sidecar to be added into the blobpool.
- Note there is a special case here: when transactions are re-added because of a chain
reorg, we cannot use the transactions gathered from the old chain blocks as-is,
because they will be missing their blobs. This was previously handled by storing the
blobs into the 'blobpool limbo'. The code has now changed to store the full
transaction in the limbo instead, but it might be confusing for code readers why we're
not simply adding the types.Transaction we already have.
Code changes summary:
- txpool.Transaction removed and all uses replaced by types.Transaction again
- blobpool now stores types.Transaction instead of defining its own blobTx format for storage
- the blobpool limbo now stores types.Transaction instead of storing only the blobs
- checks to validate the presence/absence of the blob sidecar added in certain critical places
2023-08-14 08:13:34 +00:00
|
|
|
Get(hash common.Hash) *types.Transaction
|
2020-12-14 09:27:15 +00:00
|
|
|
|
2023-06-16 12:29:40 +00:00
|
|
|
// Add should add the given transactions to the pool.
|
core/types: support for optional blob sidecar in BlobTx (#27841)
This PR removes the newly added txpool.Transaction wrapper type, and instead adds a way
of keeping the blob sidecar within types.Transaction. It's better this way because most
code in go-ethereum does not care about blob transactions, and probably never will. This
will start mattering especially on the client side of RPC, where all APIs are based on
types.Transaction. Users need to be able to use the same signing flows they already
have.
However, since blobs are only allowed in some places but not others, we will now need to
add checks to avoid creating invalid blocks. I'm still trying to figure out the best place
to do some of these. The way I have it currently is as follows:
- In block validation (import), txs are verified not to have a blob sidecar.
- In miner, we strip off the sidecar when committing the transaction into the block.
- In TxPool validation, txs must have a sidecar to be added into the blobpool.
- Note there is a special case here: when transactions are re-added because of a chain
reorg, we cannot use the transactions gathered from the old chain blocks as-is,
because they will be missing their blobs. This was previously handled by storing the
blobs into the 'blobpool limbo'. The code has now changed to store the full
transaction in the limbo instead, but it might be confusing for code readers why we're
not simply adding the types.Transaction we already have.
Code changes summary:
- txpool.Transaction removed and all uses replaced by types.Transaction again
- blobpool now stores types.Transaction instead of defining its own blobTx format for storage
- the blobpool limbo now stores types.Transaction instead of storing only the blobs
- checks to validate the presence/absence of the blob sidecar added in certain critical places
2023-08-14 08:13:34 +00:00
|
|
|
Add(txs []*types.Transaction, local bool, sync bool) []error
|
2020-12-14 09:27:15 +00:00
|
|
|
|
|
|
|
// Pending should return pending transactions.
|
|
|
|
// The slice should be modifiable by the caller.
|
2024-02-20 09:37:23 +00:00
|
|
|
Pending(filter txpool.PendingFilter) map[common.Address][]*txpool.LazyTransaction
|
2020-12-14 09:27:15 +00:00
|
|
|
|
2023-10-04 09:36:36 +00:00
|
|
|
// SubscribeTransactions subscribes to new transaction events. The subscriber
|
|
|
|
// can decide whether to receive notifications only for newly seen transactions
|
|
|
|
// or also for reorged out ones.
|
|
|
|
SubscribeTransactions(ch chan<- core.NewTxsEvent, reorgs bool) event.Subscription
|
2015-04-17 23:11:09 +00:00
|
|
|
}
|
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
// handlerConfig is the collection of initialization parameters to create a full
|
|
|
|
// node network handler.
|
|
|
|
type handlerConfig struct {
|
2023-04-24 06:37:10 +00:00
|
|
|
Database ethdb.Database // Database for direct sync insertions
|
|
|
|
Chain *core.BlockChain // Blockchain to serve data from
|
|
|
|
TxPool txPool // Transaction pool to propagate from
|
|
|
|
Merger *consensus.Merger // The manager for eth1/2 transition
|
2023-09-28 10:15:50 +00:00
|
|
|
Network uint64 // Network identifier to advertise
|
2023-04-24 06:37:10 +00:00
|
|
|
Sync downloader.SyncMode // Whether to snap or full sync
|
|
|
|
BloomCache uint64 // Megabytes to alloc for snap sync bloom
|
|
|
|
EventMux *event.TypeMux // Legacy event mux, deprecate for `feed`
|
|
|
|
RequiredBlocks map[uint64]common.Hash // Hard coded map of required block hashes for sync challenges
|
2020-12-14 09:27:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type handler struct {
|
2019-09-30 18:28:50 +00:00
|
|
|
networkID uint64
|
|
|
|
forkFilter forkid.Filter // Fork ID filter, constant across the lifetime of the node
|
2015-10-27 13:10:30 +00:00
|
|
|
|
core, accounts, eth, trie: handle genesis state missing (#28171)
* core, accounts, eth, trie: handle genesis state missing
* core, eth, trie: polish
* core: manage txpool subscription in mainpool
* eth/backend: fix test
* cmd, eth: fix test
* core/rawdb, trie/triedb/pathdb: address comments
* eth, trie: address comments
* eth: inline the function
* eth: use synced flag
* core/txpool: revert changes in txpool
* core, eth, trie: rename functions
2023-09-28 07:00:53 +00:00
|
|
|
snapSync atomic.Bool // Flag whether snap sync is enabled (gets disabled if we already have blocks)
|
|
|
|
synced atomic.Bool // Flag whether we're considered synchronised (enables transaction processing)
|
2016-06-02 12:54:07 +00:00
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
database ethdb.Database
|
|
|
|
txpool txPool
|
|
|
|
chain *core.BlockChain
|
|
|
|
maxPeers int
|
2015-07-02 16:55:18 +00:00
|
|
|
|
2019-10-28 11:59:07 +00:00
|
|
|
downloader *downloader.Downloader
|
|
|
|
blockFetcher *fetcher.BlockFetcher
|
|
|
|
txFetcher *fetcher.TxFetcher
|
|
|
|
peers *peerSet
|
all: core rework for the merge transition (#23761)
* all: work for eth1/2 transtition
* consensus/beacon, eth: change beacon difficulty to 0
* eth: updates
* all: add terminalBlockDifficulty config, fix rebasing issues
* eth: implemented merge interop spec
* internal/ethapi: update to v1.0.0.alpha.2
This commit updates the code to the new spec, moving payloadId into
it's own object. It also fixes an issue with finalizing an empty blockhash.
It also properly sets the basefee
* all: sync polishes, other fixes + refactors
* core, eth: correct semantics for LeavePoW, EnterPoS
* core: fixed rebasing artifacts
* core: light: performance improvements
* core: use keyed field (f)
* core: eth: fix compilation issues + tests
* eth/catalyst: dbetter error codes
* all: move Merger to consensus/, remove reliance on it in bc
* all: renamed EnterPoS and LeavePoW to ReachTDD and FinalizePoS
* core: make mergelogs a function
* core: use InsertChain instead of InsertBlock
* les: drop merger from lightchain object
* consensus: add merger
* core: recoverAncestors in catalyst mode
* core: fix nitpick
* all: removed merger from beacon, use TTD, nitpicks
* consensus: eth: add docstring, removed unnecessary code duplication
* consensus/beacon: better comment
* all: easy to fix nitpicks by karalabe
* consensus/beacon: verify known headers to be sure
* core: comments
* core: eth: don't drop peers who advertise blocks, nitpicks
* core: never add beacon blocks to the future queue
* core: fixed nitpicks
* consensus/beacon: simplify IsTTDReached check
* consensus/beacon: correct IsTTDReached check
Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-11-26 11:23:02 +00:00
|
|
|
merger *consensus.Merger
|
2015-04-18 00:21:07 +00:00
|
|
|
|
2015-04-22 15:56:06 +00:00
|
|
|
eventMux *event.TypeMux
|
2018-05-18 08:45:52 +00:00
|
|
|
txsCh chan core.NewTxsEvent
|
2018-05-10 07:04:45 +00:00
|
|
|
txsSub event.Subscription
|
2016-12-10 18:02:14 +00:00
|
|
|
minedBlockSub *event.TypeMuxSubscription
|
2015-04-24 12:40:32 +00:00
|
|
|
|
2022-05-04 16:55:17 +00:00
|
|
|
requiredBlocks map[uint64]common.Hash
|
2018-11-02 20:26:45 +00:00
|
|
|
|
2015-06-09 10:03:14 +00:00
|
|
|
// channels for fetcher, syncer, txsyncLoop
|
2020-03-27 13:03:20 +00:00
|
|
|
quitSync chan struct{}
|
2015-06-08 17:38:39 +00:00
|
|
|
|
2020-03-27 13:03:20 +00:00
|
|
|
chainSync *chainSyncer
|
|
|
|
wg sync.WaitGroup
|
2023-07-11 07:57:42 +00:00
|
|
|
|
|
|
|
handlerStartCh chan struct{}
|
|
|
|
handlerDoneCh chan struct{}
|
2015-04-17 23:11:09 +00:00
|
|
|
}
|
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
// newHandler returns a handler for all Ethereum chain management protocol.
|
|
|
|
func newHandler(config *handlerConfig) (*handler, error) {
|
2015-06-26 13:54:27 +00:00
|
|
|
// Create the protocol manager with the base fields
|
2020-12-14 09:27:15 +00:00
|
|
|
if config.EventMux == nil {
|
|
|
|
config.EventMux = new(event.TypeMux) // Nicety initialization for tests
|
|
|
|
}
|
|
|
|
h := &handler{
|
2022-05-04 16:55:17 +00:00
|
|
|
networkID: config.Network,
|
|
|
|
forkFilter: forkid.NewFilter(config.Chain),
|
|
|
|
eventMux: config.EventMux,
|
|
|
|
database: config.Database,
|
|
|
|
txpool: config.TxPool,
|
|
|
|
chain: config.Chain,
|
|
|
|
peers: newPeerSet(),
|
|
|
|
merger: config.Merger,
|
|
|
|
requiredBlocks: config.RequiredBlocks,
|
|
|
|
quitSync: make(chan struct{}),
|
2023-07-11 07:57:42 +00:00
|
|
|
handlerDoneCh: make(chan struct{}),
|
|
|
|
handlerStartCh: make(chan struct{}),
|
2015-04-17 23:11:09 +00:00
|
|
|
}
|
2020-12-14 09:27:15 +00:00
|
|
|
if config.Sync == downloader.FullSync {
|
2021-11-26 11:26:03 +00:00
|
|
|
// The database seems empty as the current block is the genesis. Yet the snap
|
|
|
|
// block is ahead, so snap sync was enabled for this node at a certain point.
|
2019-06-26 08:00:21 +00:00
|
|
|
// The scenarios where this can happen is
|
2021-11-26 11:26:03 +00:00
|
|
|
// * if the user manually (or via a bad block) rolled back a snap sync node
|
2019-06-26 08:00:21 +00:00
|
|
|
// below the sync point.
|
2021-11-26 11:26:03 +00:00
|
|
|
// * the last snap sync is not finished while user specifies a full sync this
|
2019-06-26 08:00:21 +00:00
|
|
|
// time. But we don't have any recent state for full sync.
|
2021-11-26 11:26:03 +00:00
|
|
|
// In these cases however it's safe to reenable snap sync.
|
2023-03-02 06:29:15 +00:00
|
|
|
fullBlock, snapBlock := h.chain.CurrentBlock(), h.chain.CurrentSnapBlock()
|
|
|
|
if fullBlock.Number.Uint64() == 0 && snapBlock.Number.Uint64() > 0 {
|
2023-04-25 10:06:50 +00:00
|
|
|
h.snapSync.Store(true)
|
core, accounts, eth, trie: handle genesis state missing (#28171)
* core, accounts, eth, trie: handle genesis state missing
* core, eth, trie: polish
* core: manage txpool subscription in mainpool
* eth/backend: fix test
* cmd, eth: fix test
* core/rawdb, trie/triedb/pathdb: address comments
* eth, trie: address comments
* eth: inline the function
* eth: use synced flag
* core/txpool: revert changes in txpool
* core, eth, trie: rename functions
2023-09-28 07:00:53 +00:00
|
|
|
log.Warn("Switch sync mode from full sync to snap sync", "reason", "snap sync incomplete")
|
|
|
|
} else if !h.chain.HasState(fullBlock.Root) {
|
|
|
|
h.snapSync.Store(true)
|
|
|
|
log.Warn("Switch sync mode from full sync to snap sync", "reason", "head state missing")
|
2019-06-26 08:00:21 +00:00
|
|
|
}
|
|
|
|
} else {
|
core, accounts, eth, trie: handle genesis state missing (#28171)
* core, accounts, eth, trie: handle genesis state missing
* core, eth, trie: polish
* core: manage txpool subscription in mainpool
* eth/backend: fix test
* cmd, eth: fix test
* core/rawdb, trie/triedb/pathdb: address comments
* eth, trie: address comments
* eth: inline the function
* eth: use synced flag
* core/txpool: revert changes in txpool
* core, eth, trie: rename functions
2023-09-28 07:00:53 +00:00
|
|
|
head := h.chain.CurrentBlock()
|
|
|
|
if head.Number.Uint64() > 0 && h.chain.HasState(head.Root) {
|
2021-11-26 11:26:03 +00:00
|
|
|
// Print warning log if database is not empty to run snap sync.
|
core, accounts, eth, trie: handle genesis state missing (#28171)
* core, accounts, eth, trie: handle genesis state missing
* core, eth, trie: polish
* core: manage txpool subscription in mainpool
* eth/backend: fix test
* cmd, eth: fix test
* core/rawdb, trie/triedb/pathdb: address comments
* eth, trie: address comments
* eth: inline the function
* eth: use synced flag
* core/txpool: revert changes in txpool
* core, eth, trie: rename functions
2023-09-28 07:00:53 +00:00
|
|
|
log.Warn("Switch sync mode from snap sync to full sync", "reason", "snap sync complete")
|
2019-06-26 08:00:21 +00:00
|
|
|
} else {
|
2021-11-26 11:26:03 +00:00
|
|
|
// If snap sync was requested and our database is empty, grant it
|
2023-04-25 10:06:50 +00:00
|
|
|
h.snapSync.Store(true)
|
core, accounts, eth, trie: handle genesis state missing (#28171)
* core, accounts, eth, trie: handle genesis state missing
* core, eth, trie: polish
* core: manage txpool subscription in mainpool
* eth/backend: fix test
* cmd, eth: fix test
* core/rawdb, trie/triedb/pathdb: address comments
* eth, trie: address comments
* eth: inline the function
* eth: use synced flag
* core/txpool: revert changes in txpool
* core, eth, trie: rename functions
2023-09-28 07:00:53 +00:00
|
|
|
log.Info("Enabled snap sync", "head", head.Number, "hash", head.Hash())
|
2019-06-26 08:00:21 +00:00
|
|
|
}
|
2016-05-17 11:17:20 +00:00
|
|
|
}
|
2023-12-08 13:16:04 +00:00
|
|
|
// If snap sync is requested but snapshots are disabled, fail loudly
|
|
|
|
if h.snapSync.Load() && config.Chain.Snapshots() == nil {
|
|
|
|
return nil, errors.New("snap sync not supported with snapshots disabled")
|
|
|
|
}
|
2022-08-01 12:13:25 +00:00
|
|
|
// Construct the downloader (long sync)
|
core, accounts, eth, trie: handle genesis state missing (#28171)
* core, accounts, eth, trie: handle genesis state missing
* core, eth, trie: polish
* core: manage txpool subscription in mainpool
* eth/backend: fix test
* cmd, eth: fix test
* core/rawdb, trie/triedb/pathdb: address comments
* eth, trie: address comments
* eth: inline the function
* eth: use synced flag
* core/txpool: revert changes in txpool
* core, eth, trie: rename functions
2023-09-28 07:00:53 +00:00
|
|
|
h.downloader = downloader.New(config.Database, h.eventMux, h.chain, nil, h.removePeer, h.enableSyncedFeatures)
|
2022-08-01 12:13:25 +00:00
|
|
|
if ttd := h.chain.Config().TerminalTotalDifficulty; ttd != nil {
|
|
|
|
if h.chain.Config().TerminalTotalDifficultyPassed {
|
|
|
|
log.Info("Chain post-merge, sync via beacon client")
|
|
|
|
} else {
|
|
|
|
head := h.chain.CurrentBlock()
|
2023-03-02 06:29:15 +00:00
|
|
|
if td := h.chain.GetTd(head.Hash(), head.Number.Uint64()); td.Cmp(ttd) >= 0 {
|
2022-08-01 12:13:25 +00:00
|
|
|
log.Info("Chain post-TTD, sync via beacon client")
|
|
|
|
} else {
|
|
|
|
log.Warn("Chain pre-merge, sync via PoW (ensure beacon client is ready)")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if h.chain.Config().TerminalTotalDifficultyPassed {
|
|
|
|
log.Error("Chain configured post-merge, but without TTD. Are you debugging sync?")
|
|
|
|
}
|
2019-05-13 12:28:01 +00:00
|
|
|
// Construct the fetcher (short sync)
|
2017-04-04 22:16:29 +00:00
|
|
|
validator := func(header *types.Header) error {
|
all: core rework for the merge transition (#23761)
* all: work for eth1/2 transtition
* consensus/beacon, eth: change beacon difficulty to 0
* eth: updates
* all: add terminalBlockDifficulty config, fix rebasing issues
* eth: implemented merge interop spec
* internal/ethapi: update to v1.0.0.alpha.2
This commit updates the code to the new spec, moving payloadId into
it's own object. It also fixes an issue with finalizing an empty blockhash.
It also properly sets the basefee
* all: sync polishes, other fixes + refactors
* core, eth: correct semantics for LeavePoW, EnterPoS
* core: fixed rebasing artifacts
* core: light: performance improvements
* core: use keyed field (f)
* core: eth: fix compilation issues + tests
* eth/catalyst: dbetter error codes
* all: move Merger to consensus/, remove reliance on it in bc
* all: renamed EnterPoS and LeavePoW to ReachTDD and FinalizePoS
* core: make mergelogs a function
* core: use InsertChain instead of InsertBlock
* les: drop merger from lightchain object
* consensus: add merger
* core: recoverAncestors in catalyst mode
* core: fix nitpick
* all: removed merger from beacon, use TTD, nitpicks
* consensus: eth: add docstring, removed unnecessary code duplication
* consensus/beacon: better comment
* all: easy to fix nitpicks by karalabe
* consensus/beacon: verify known headers to be sure
* core: comments
* core: eth: don't drop peers who advertise blocks, nitpicks
* core: never add beacon blocks to the future queue
* core: fixed nitpicks
* consensus/beacon: simplify IsTTDReached check
* consensus/beacon: correct IsTTDReached check
Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-11-26 11:23:02 +00:00
|
|
|
// All the block fetcher activities should be disabled
|
|
|
|
// after the transition. Print the warning log.
|
|
|
|
if h.merger.PoSFinalized() {
|
|
|
|
log.Warn("Unexpected validation activity", "hash", header.Hash(), "number", header.Number)
|
|
|
|
return errors.New("unexpected behavior after transition")
|
|
|
|
}
|
|
|
|
// Reject all the PoS style headers in the first place. No matter
|
|
|
|
// the chain has finished the transition or not, the PoS headers
|
|
|
|
// should only come from the trusted consensus layer instead of
|
|
|
|
// p2p network.
|
|
|
|
if beacon, ok := h.chain.Engine().(*beacon.Beacon); ok {
|
|
|
|
if beacon.IsPoSHeader(header) {
|
|
|
|
return errors.New("unexpected post-merge header")
|
|
|
|
}
|
|
|
|
}
|
2023-05-03 09:58:39 +00:00
|
|
|
return h.chain.Engine().VerifyHeader(h.chain, header)
|
2015-06-18 15:00:19 +00:00
|
|
|
}
|
2015-06-16 14:39:04 +00:00
|
|
|
heighter := func() uint64 {
|
2023-03-02 06:29:15 +00:00
|
|
|
return h.chain.CurrentBlock().Number.Uint64()
|
2015-06-16 14:39:04 +00:00
|
|
|
}
|
2016-06-02 12:54:07 +00:00
|
|
|
inserter := func(blocks types.Blocks) (int, error) {
|
all: core rework for the merge transition (#23761)
* all: work for eth1/2 transtition
* consensus/beacon, eth: change beacon difficulty to 0
* eth: updates
* all: add terminalBlockDifficulty config, fix rebasing issues
* eth: implemented merge interop spec
* internal/ethapi: update to v1.0.0.alpha.2
This commit updates the code to the new spec, moving payloadId into
it's own object. It also fixes an issue with finalizing an empty blockhash.
It also properly sets the basefee
* all: sync polishes, other fixes + refactors
* core, eth: correct semantics for LeavePoW, EnterPoS
* core: fixed rebasing artifacts
* core: light: performance improvements
* core: use keyed field (f)
* core: eth: fix compilation issues + tests
* eth/catalyst: dbetter error codes
* all: move Merger to consensus/, remove reliance on it in bc
* all: renamed EnterPoS and LeavePoW to ReachTDD and FinalizePoS
* core: make mergelogs a function
* core: use InsertChain instead of InsertBlock
* les: drop merger from lightchain object
* consensus: add merger
* core: recoverAncestors in catalyst mode
* core: fix nitpick
* all: removed merger from beacon, use TTD, nitpicks
* consensus: eth: add docstring, removed unnecessary code duplication
* consensus/beacon: better comment
* all: easy to fix nitpicks by karalabe
* consensus/beacon: verify known headers to be sure
* core: comments
* core: eth: don't drop peers who advertise blocks, nitpicks
* core: never add beacon blocks to the future queue
* core: fixed nitpicks
* consensus/beacon: simplify IsTTDReached check
* consensus/beacon: correct IsTTDReached check
Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-11-26 11:23:02 +00:00
|
|
|
// All the block fetcher activities should be disabled
|
|
|
|
// after the transition. Print the warning log.
|
|
|
|
if h.merger.PoSFinalized() {
|
|
|
|
var ctx []interface{}
|
|
|
|
ctx = append(ctx, "blocks", len(blocks))
|
|
|
|
if len(blocks) > 0 {
|
|
|
|
ctx = append(ctx, "firsthash", blocks[0].Hash())
|
|
|
|
ctx = append(ctx, "firstnumber", blocks[0].Number())
|
|
|
|
ctx = append(ctx, "lasthash", blocks[len(blocks)-1].Hash())
|
|
|
|
ctx = append(ctx, "lastnumber", blocks[len(blocks)-1].Number())
|
|
|
|
}
|
|
|
|
log.Warn("Unexpected insertion activity", ctx...)
|
|
|
|
return 0, errors.New("unexpected behavior after transition")
|
|
|
|
}
|
2021-11-26 11:26:03 +00:00
|
|
|
// If snap sync is running, deny importing weird blocks. This is a problematic
|
|
|
|
// clause when starting up a new network, because snap-syncing miners might not
|
2019-04-26 09:11:22 +00:00
|
|
|
// accept each others' blocks until a restart. Unfortunately we haven't figured
|
|
|
|
// out a way yet where nodes can decide unilaterally whether the network is new
|
|
|
|
// or not. This should be fixed if we figure out a solution.
|
core, accounts, eth, trie: handle genesis state missing (#28171)
* core, accounts, eth, trie: handle genesis state missing
* core, eth, trie: polish
* core: manage txpool subscription in mainpool
* eth/backend: fix test
* cmd, eth: fix test
* core/rawdb, trie/triedb/pathdb: address comments
* eth, trie: address comments
* eth: inline the function
* eth: use synced flag
* core/txpool: revert changes in txpool
* core, eth, trie: rename functions
2023-09-28 07:00:53 +00:00
|
|
|
if !h.synced.Load() {
|
|
|
|
log.Warn("Syncing, discarded propagated block", "number", blocks[0].Number(), "hash", blocks[0].Hash())
|
2017-05-26 13:04:12 +00:00
|
|
|
return 0, nil
|
|
|
|
}
|
all: core rework for the merge transition (#23761)
* all: work for eth1/2 transtition
* consensus/beacon, eth: change beacon difficulty to 0
* eth: updates
* all: add terminalBlockDifficulty config, fix rebasing issues
* eth: implemented merge interop spec
* internal/ethapi: update to v1.0.0.alpha.2
This commit updates the code to the new spec, moving payloadId into
it's own object. It also fixes an issue with finalizing an empty blockhash.
It also properly sets the basefee
* all: sync polishes, other fixes + refactors
* core, eth: correct semantics for LeavePoW, EnterPoS
* core: fixed rebasing artifacts
* core: light: performance improvements
* core: use keyed field (f)
* core: eth: fix compilation issues + tests
* eth/catalyst: dbetter error codes
* all: move Merger to consensus/, remove reliance on it in bc
* all: renamed EnterPoS and LeavePoW to ReachTDD and FinalizePoS
* core: make mergelogs a function
* core: use InsertChain instead of InsertBlock
* les: drop merger from lightchain object
* consensus: add merger
* core: recoverAncestors in catalyst mode
* core: fix nitpick
* all: removed merger from beacon, use TTD, nitpicks
* consensus: eth: add docstring, removed unnecessary code duplication
* consensus/beacon: better comment
* all: easy to fix nitpicks by karalabe
* consensus/beacon: verify known headers to be sure
* core: comments
* core: eth: don't drop peers who advertise blocks, nitpicks
* core: never add beacon blocks to the future queue
* core: fixed nitpicks
* consensus/beacon: simplify IsTTDReached check
* consensus/beacon: correct IsTTDReached check
Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-11-26 11:23:02 +00:00
|
|
|
if h.merger.TDDReached() {
|
|
|
|
// The blocks from the p2p network is regarded as untrusted
|
|
|
|
// after the transition. In theory block gossip should be disabled
|
|
|
|
// entirely whenever the transition is started. But in order to
|
|
|
|
// handle the transition boundary reorg in the consensus-layer,
|
|
|
|
// the legacy blocks are still accepted, but only for the terminal
|
|
|
|
// pow blocks. Spec: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-3675.md#halt-the-importing-of-pow-blocks
|
|
|
|
for i, block := range blocks {
|
|
|
|
ptd := h.chain.GetTd(block.ParentHash(), block.NumberU64()-1)
|
|
|
|
if ptd == nil {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
td := new(big.Int).Add(ptd, block.Difficulty())
|
|
|
|
if !h.chain.Config().IsTerminalPoWBlock(ptd, td) {
|
2023-09-28 10:15:50 +00:00
|
|
|
log.Info("Filtered out non-terminal pow block", "number", block.NumberU64(), "hash", block.Hash())
|
all: core rework for the merge transition (#23761)
* all: work for eth1/2 transtition
* consensus/beacon, eth: change beacon difficulty to 0
* eth: updates
* all: add terminalBlockDifficulty config, fix rebasing issues
* eth: implemented merge interop spec
* internal/ethapi: update to v1.0.0.alpha.2
This commit updates the code to the new spec, moving payloadId into
it's own object. It also fixes an issue with finalizing an empty blockhash.
It also properly sets the basefee
* all: sync polishes, other fixes + refactors
* core, eth: correct semantics for LeavePoW, EnterPoS
* core: fixed rebasing artifacts
* core: light: performance improvements
* core: use keyed field (f)
* core: eth: fix compilation issues + tests
* eth/catalyst: dbetter error codes
* all: move Merger to consensus/, remove reliance on it in bc
* all: renamed EnterPoS and LeavePoW to ReachTDD and FinalizePoS
* core: make mergelogs a function
* core: use InsertChain instead of InsertBlock
* les: drop merger from lightchain object
* consensus: add merger
* core: recoverAncestors in catalyst mode
* core: fix nitpick
* all: removed merger from beacon, use TTD, nitpicks
* consensus: eth: add docstring, removed unnecessary code duplication
* consensus/beacon: better comment
* all: easy to fix nitpicks by karalabe
* consensus/beacon: verify known headers to be sure
* core: comments
* core: eth: don't drop peers who advertise blocks, nitpicks
* core: never add beacon blocks to the future queue
* core: fixed nitpicks
* consensus/beacon: simplify IsTTDReached check
* consensus/beacon: correct IsTTDReached check
Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-11-26 11:23:02 +00:00
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
if err := h.chain.InsertBlockWithoutSetHead(block); err != nil {
|
|
|
|
return i, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0, nil
|
|
|
|
}
|
core, accounts, eth, trie: handle genesis state missing (#28171)
* core, accounts, eth, trie: handle genesis state missing
* core, eth, trie: polish
* core: manage txpool subscription in mainpool
* eth/backend: fix test
* cmd, eth: fix test
* core/rawdb, trie/triedb/pathdb: address comments
* eth, trie: address comments
* eth: inline the function
* eth: use synced flag
* core/txpool: revert changes in txpool
* core, eth, trie: rename functions
2023-09-28 07:00:53 +00:00
|
|
|
return h.chain.InsertChain(blocks)
|
2016-06-02 12:54:07 +00:00
|
|
|
}
|
2020-12-14 09:27:15 +00:00
|
|
|
h.blockFetcher = fetcher.NewBlockFetcher(false, nil, h.chain.GetBlockByHash, validator, h.BroadcastBlock, heighter, nil, inserter, h.removePeer)
|
2020-01-22 14:39:43 +00:00
|
|
|
|
|
|
|
fetchTx := func(peer string, hashes []common.Hash) error {
|
2021-02-02 08:44:36 +00:00
|
|
|
p := h.peers.peer(peer)
|
2020-01-22 14:39:43 +00:00
|
|
|
if p == nil {
|
|
|
|
return errors.New("unknown peer")
|
|
|
|
}
|
|
|
|
return p.RequestTxs(hashes)
|
|
|
|
}
|
core/types: support for optional blob sidecar in BlobTx (#27841)
This PR removes the newly added txpool.Transaction wrapper type, and instead adds a way
of keeping the blob sidecar within types.Transaction. It's better this way because most
code in go-ethereum does not care about blob transactions, and probably never will. This
will start mattering especially on the client side of RPC, where all APIs are based on
types.Transaction. Users need to be able to use the same signing flows they already
have.
However, since blobs are only allowed in some places but not others, we will now need to
add checks to avoid creating invalid blocks. I'm still trying to figure out the best place
to do some of these. The way I have it currently is as follows:
- In block validation (import), txs are verified not to have a blob sidecar.
- In miner, we strip off the sidecar when committing the transaction into the block.
- In TxPool validation, txs must have a sidecar to be added into the blobpool.
- Note there is a special case here: when transactions are re-added because of a chain
reorg, we cannot use the transactions gathered from the old chain blocks as-is,
because they will be missing their blobs. This was previously handled by storing the
blobs into the 'blobpool limbo'. The code has now changed to store the full
transaction in the limbo instead, but it might be confusing for code readers why we're
not simply adding the types.Transaction we already have.
Code changes summary:
- txpool.Transaction removed and all uses replaced by types.Transaction again
- blobpool now stores types.Transaction instead of defining its own blobTx format for storage
- the blobpool limbo now stores types.Transaction instead of storing only the blobs
- checks to validate the presence/absence of the blob sidecar added in certain critical places
2023-08-14 08:13:34 +00:00
|
|
|
addTxs := func(txs []*types.Transaction) []error {
|
2023-06-16 12:29:40 +00:00
|
|
|
return h.txpool.Add(txs, false, false)
|
|
|
|
}
|
2023-10-10 08:35:51 +00:00
|
|
|
h.txFetcher = fetcher.NewTxFetcher(h.txpool.Has, addTxs, fetchTx, h.removePeer)
|
2020-12-14 09:27:15 +00:00
|
|
|
h.chainSync = newChainSyncer(h)
|
|
|
|
return h, nil
|
2019-07-08 15:53:47 +00:00
|
|
|
}
|
|
|
|
|
2023-07-11 07:57:42 +00:00
|
|
|
// protoTracker tracks the number of active protocol handlers.
|
|
|
|
func (h *handler) protoTracker() {
|
|
|
|
defer h.wg.Done()
|
|
|
|
var active int
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-h.handlerStartCh:
|
|
|
|
active++
|
|
|
|
case <-h.handlerDoneCh:
|
|
|
|
active--
|
|
|
|
case <-h.quitSync:
|
|
|
|
// Wait for all active handlers to finish.
|
|
|
|
for ; active > 0; active-- {
|
|
|
|
<-h.handlerDoneCh
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// incHandlers signals to increment the number of active handlers if not
|
|
|
|
// quitting.
|
|
|
|
func (h *handler) incHandlers() bool {
|
|
|
|
select {
|
|
|
|
case h.handlerStartCh <- struct{}{}:
|
|
|
|
return true
|
|
|
|
case <-h.quitSync:
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// decHandlers signals to decrement the number of active handlers.
|
|
|
|
func (h *handler) decHandlers() {
|
|
|
|
h.handlerDoneCh <- struct{}{}
|
|
|
|
}
|
|
|
|
|
2021-02-02 08:44:36 +00:00
|
|
|
// runEthPeer registers an eth peer into the joint eth/snap peerset, adds it to
|
2022-06-24 12:28:01 +00:00
|
|
|
// various subsystems and starts handling messages.
|
2020-12-14 09:27:15 +00:00
|
|
|
func (h *handler) runEthPeer(peer *eth.Peer, handler eth.Handler) error {
|
2023-07-11 07:57:42 +00:00
|
|
|
if !h.incHandlers() {
|
|
|
|
return p2p.DiscQuitting
|
|
|
|
}
|
|
|
|
defer h.decHandlers()
|
|
|
|
|
2021-02-02 08:44:36 +00:00
|
|
|
// If the peer has a `snap` extension, wait for it to connect so we can have
|
|
|
|
// a uniform initialization/teardown mechanism
|
|
|
|
snap, err := h.peers.waitSnapExtension(peer)
|
|
|
|
if err != nil {
|
|
|
|
peer.Log().Error("Snapshot extension barrier failed", "err", err)
|
|
|
|
return err
|
|
|
|
}
|
2015-06-26 17:42:27 +00:00
|
|
|
|
|
|
|
// Execute the Ethereum handshake
|
2018-01-30 16:39:32 +00:00
|
|
|
var (
|
2020-12-14 09:27:15 +00:00
|
|
|
genesis = h.chain.Genesis()
|
|
|
|
head = h.chain.CurrentHeader()
|
2018-01-30 16:39:32 +00:00
|
|
|
hash = head.Hash()
|
|
|
|
number = head.Number.Uint64()
|
2020-12-14 09:27:15 +00:00
|
|
|
td = h.chain.GetTd(hash, number)
|
2018-01-30 16:39:32 +00:00
|
|
|
)
|
2023-08-16 21:31:02 +00:00
|
|
|
forkID := forkid.NewID(h.chain.Config(), genesis, number, head.Time)
|
2020-12-14 09:27:15 +00:00
|
|
|
if err := peer.Handshake(h.networkID, td, hash, genesis.Hash(), forkID, h.forkFilter); err != nil {
|
|
|
|
peer.Log().Debug("Ethereum handshake failed", "err", err)
|
2015-04-17 23:11:09 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-01-25 18:06:52 +00:00
|
|
|
reject := false // reserved peer slots
|
2023-04-25 10:06:50 +00:00
|
|
|
if h.snapSync.Load() {
|
2021-02-02 08:44:36 +00:00
|
|
|
if snap == nil {
|
|
|
|
// If we are running snap-sync, we want to reserve roughly half the peer
|
|
|
|
// slots for peers supporting the snap protocol.
|
|
|
|
// The logic here is; we only allow up to 5 more non-snap peers than snap-peers.
|
|
|
|
if all, snp := h.peers.len(), h.peers.snapLen(); all-snp > snp+5 {
|
|
|
|
reject = true
|
|
|
|
}
|
2021-01-25 18:06:52 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-14 09:27:15 +00:00
|
|
|
// Ignore maxPeers if this is a trusted peer
|
2021-01-25 18:06:52 +00:00
|
|
|
if !peer.Peer.Info().Network.Trusted {
|
2021-02-02 08:44:36 +00:00
|
|
|
if reject || h.peers.len() >= h.maxPeers {
|
2021-01-25 18:06:52 +00:00
|
|
|
return p2p.DiscTooManyPeers
|
|
|
|
}
|
2020-12-14 09:27:15 +00:00
|
|
|
}
|
|
|
|
peer.Log().Debug("Ethereum peer connected", "name", peer.Name())
|
2020-03-27 13:03:20 +00:00
|
|
|
|
2015-06-26 17:42:27 +00:00
|
|
|
// Register the peer locally
|
2021-02-02 08:44:36 +00:00
|
|
|
if err := h.peers.registerPeer(peer, snap); err != nil {
|
2020-12-14 09:27:15 +00:00
|
|
|
peer.Log().Error("Ethereum peer registration failed", "err", err)
|
2015-05-18 18:33:37 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-05-25 20:20:36 +00:00
|
|
|
defer h.unregisterPeer(peer.ID())
|
2015-04-17 23:11:09 +00:00
|
|
|
|
2021-02-02 08:44:36 +00:00
|
|
|
p := h.peers.peer(peer.ID())
|
2020-12-14 09:27:15 +00:00
|
|
|
if p == nil {
|
|
|
|
return errors.New("peer dropped during handling")
|
|
|
|
}
|
2015-06-26 17:42:27 +00:00
|
|
|
// Register the peer in the downloader. If the downloader considers it banned, we disconnect
|
2020-12-14 09:27:15 +00:00
|
|
|
if err := h.downloader.RegisterPeer(peer.ID(), peer.Version(), peer); err != nil {
|
2021-02-02 08:44:36 +00:00
|
|
|
peer.Log().Error("Failed to register peer in eth syncer", "err", err)
|
2015-05-18 18:33:37 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-02-02 08:44:36 +00:00
|
|
|
if snap != nil {
|
|
|
|
if err := h.downloader.SnapSyncer.Register(snap); err != nil {
|
|
|
|
peer.Log().Error("Failed to register peer in snap syncer", "err", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2023-07-11 07:57:42 +00:00
|
|
|
h.chainSync.handlePeerEvent()
|
2020-03-27 13:03:20 +00:00
|
|
|
|
2015-06-09 10:03:14 +00:00
|
|
|
// Propagate existing transactions. new transactions appearing
|
2015-04-17 23:11:09 +00:00
|
|
|
// after this will be sent via broadcasts.
|
2020-12-14 09:27:15 +00:00
|
|
|
h.syncTransactions(peer)
|
2015-06-09 10:03:14 +00:00
|
|
|
|
2021-11-26 11:26:03 +00:00
|
|
|
// Create a notification channel for pending requests if the peer goes down
|
|
|
|
dead := make(chan struct{})
|
|
|
|
defer close(dead)
|
|
|
|
|
2022-03-15 11:20:03 +00:00
|
|
|
// If we have any explicit peer required block hashes, request them
|
2022-05-04 16:55:17 +00:00
|
|
|
for number, hash := range h.requiredBlocks {
|
2021-11-26 11:26:03 +00:00
|
|
|
resCh := make(chan *eth.Response)
|
2022-09-20 11:14:24 +00:00
|
|
|
|
|
|
|
req, err := peer.RequestHeadersByNumber(number, 1, 0, false, resCh)
|
|
|
|
if err != nil {
|
2018-11-02 20:26:45 +00:00
|
|
|
return err
|
|
|
|
}
|
2022-09-20 11:14:24 +00:00
|
|
|
go func(number uint64, hash common.Hash, req *eth.Request) {
|
|
|
|
// Ensure the request gets cancelled in case of error/drop
|
|
|
|
defer req.Close()
|
|
|
|
|
2021-11-26 11:26:03 +00:00
|
|
|
timeout := time.NewTimer(syncChallengeTimeout)
|
|
|
|
defer timeout.Stop()
|
|
|
|
|
|
|
|
select {
|
|
|
|
case res := <-resCh:
|
2023-10-03 12:03:19 +00:00
|
|
|
headers := ([]*types.Header)(*res.Res.(*eth.BlockHeadersRequest))
|
2021-11-26 11:26:03 +00:00
|
|
|
if len(headers) == 0 {
|
2022-03-15 11:20:03 +00:00
|
|
|
// Required blocks are allowed to be missing if the remote
|
2021-11-26 11:26:03 +00:00
|
|
|
// node is not yet synced
|
|
|
|
res.Done <- nil
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Validate the header and either drop the peer or continue
|
|
|
|
if len(headers) > 1 {
|
2022-03-15 11:20:03 +00:00
|
|
|
res.Done <- errors.New("too many headers in required block response")
|
2021-11-26 11:26:03 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if headers[0].Number.Uint64() != number || headers[0].Hash() != hash {
|
2022-03-15 11:20:03 +00:00
|
|
|
peer.Log().Info("Required block mismatch, dropping peer", "number", number, "hash", headers[0].Hash(), "want", hash)
|
|
|
|
res.Done <- errors.New("required block mismatch")
|
2021-11-26 11:26:03 +00:00
|
|
|
return
|
|
|
|
}
|
2022-03-15 11:20:03 +00:00
|
|
|
peer.Log().Debug("Peer required block verified", "number", number, "hash", hash)
|
2022-01-07 13:12:43 +00:00
|
|
|
res.Done <- nil
|
2021-11-26 11:26:03 +00:00
|
|
|
case <-timeout.C:
|
2022-03-15 11:20:03 +00:00
|
|
|
peer.Log().Warn("Required block challenge timed out, dropping", "addr", peer.RemoteAddr(), "type", peer.Name())
|
2021-11-26 11:26:03 +00:00
|
|
|
h.removePeer(peer.ID())
|
|
|
|
}
|
2022-09-20 11:14:24 +00:00
|
|
|
}(number, hash, req)
|
2018-11-02 20:26:45 +00:00
|
|
|
}
|
2018-12-10 12:47:01 +00:00
|
|
|
// Handle incoming messages until the connection is torn down
|
2020-12-14 09:27:15 +00:00
|
|
|
return handler(peer)
|
2015-04-17 23:11:09 +00:00
|
|
|
}
|
|
|
|
|
2021-02-02 08:44:36 +00:00
|
|
|
// runSnapExtension registers a `snap` peer into the joint eth/snap peerset and
|
|
|
|
// starts handling inbound messages. As `snap` is only a satellite protocol to
|
|
|
|
// `eth`, all subsystem registrations and lifecycle management will be done by
|
|
|
|
// the main `eth` handler to prevent strange races.
|
|
|
|
func (h *handler) runSnapExtension(peer *snap.Peer, handler snap.Handler) error {
|
2023-07-11 07:57:42 +00:00
|
|
|
if !h.incHandlers() {
|
|
|
|
return p2p.DiscQuitting
|
|
|
|
}
|
|
|
|
defer h.decHandlers()
|
2020-12-14 09:27:15 +00:00
|
|
|
|
2021-02-02 08:44:36 +00:00
|
|
|
if err := h.peers.registerSnapExtension(peer); err != nil {
|
2023-07-06 14:20:31 +00:00
|
|
|
if metrics.Enabled {
|
|
|
|
if peer.Inbound() {
|
|
|
|
snap.IngressRegistrationErrorMeter.Mark(1)
|
|
|
|
} else {
|
|
|
|
snap.EgressRegistrationErrorMeter.Mark(1)
|
|
|
|
}
|
|
|
|
}
|
2023-10-04 09:37:04 +00:00
|
|
|
peer.Log().Debug("Snapshot extension registration failed", "err", err)
|
2020-12-14 09:27:15 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return handler(peer)
|
|
|
|
}
|
2015-09-30 16:23:31 +00:00
|
|
|
|
2021-05-25 20:20:36 +00:00
|
|
|
// removePeer requests disconnection of a peer.
|
2020-12-14 09:27:15 +00:00
|
|
|
func (h *handler) removePeer(id string) {
|
2021-05-25 20:20:36 +00:00
|
|
|
peer := h.peers.peer(id)
|
|
|
|
if peer != nil {
|
|
|
|
peer.Peer.Disconnect(p2p.DiscUselessPeer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// unregisterPeer removes a peer from the downloader, fetchers and main peer set.
|
|
|
|
func (h *handler) unregisterPeer(id string) {
|
2021-01-25 06:17:05 +00:00
|
|
|
// Create a custom logger to avoid printing the entire id
|
|
|
|
var logger log.Logger
|
|
|
|
if len(id) < 16 {
|
|
|
|
// Tests use short IDs, don't choke on them
|
|
|
|
logger = log.New("peer", id)
|
|
|
|
} else {
|
|
|
|
logger = log.New("peer", id[:8])
|
|
|
|
}
|
2021-02-02 08:44:36 +00:00
|
|
|
// Abort if the peer does not exist
|
|
|
|
peer := h.peers.peer(id)
|
|
|
|
if peer == nil {
|
|
|
|
logger.Error("Ethereum peer removal failed", "err", errPeerNotRegistered)
|
|
|
|
return
|
2020-12-14 09:27:15 +00:00
|
|
|
}
|
2021-02-02 08:44:36 +00:00
|
|
|
// Remove the `eth` peer if it exists
|
|
|
|
logger.Debug("Removing Ethereum peer", "snap", peer.snapExt != nil)
|
|
|
|
|
|
|
|
// Remove the `snap` extension if it exists
|
|
|
|
if peer.snapExt != nil {
|
2020-12-14 09:27:15 +00:00
|
|
|
h.downloader.SnapSyncer.Unregister(id)
|
|
|
|
}
|
2021-02-02 08:44:36 +00:00
|
|
|
h.downloader.UnregisterPeer(id)
|
|
|
|
h.txFetcher.Drop(id)
|
|
|
|
|
|
|
|
if err := h.peers.unregisterPeer(id); err != nil {
|
|
|
|
logger.Error("Ethereum peer removal failed", "err", err)
|
2020-12-14 09:27:15 +00:00
|
|
|
}
|
|
|
|
}
|
2015-10-05 16:37:56 +00:00
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
func (h *handler) Start(maxPeers int) {
|
|
|
|
h.maxPeers = maxPeers
|
2015-07-02 16:55:18 +00:00
|
|
|
|
2023-10-04 09:36:36 +00:00
|
|
|
// broadcast and announce transactions (only new ones, not resurrected ones)
|
2020-12-14 09:27:15 +00:00
|
|
|
h.wg.Add(1)
|
|
|
|
h.txsCh = make(chan core.NewTxsEvent, txChanSize)
|
2023-10-04 09:36:36 +00:00
|
|
|
h.txsSub = h.txpool.SubscribeTransactions(h.txsCh, false)
|
2020-12-14 09:27:15 +00:00
|
|
|
go h.txBroadcastLoop()
|
2015-09-30 16:23:31 +00:00
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
// broadcast mined blocks
|
|
|
|
h.wg.Add(1)
|
|
|
|
h.minedBlockSub = h.eventMux.Subscribe(core.NewMinedBlockEvent{})
|
|
|
|
go h.minedBroadcastLoop()
|
2015-04-17 23:11:09 +00:00
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
// start sync handlers
|
2021-08-24 18:52:58 +00:00
|
|
|
h.wg.Add(1)
|
2020-12-14 09:27:15 +00:00
|
|
|
go h.chainSync.loop()
|
2023-07-11 07:57:42 +00:00
|
|
|
|
|
|
|
// start peer handler tracker
|
|
|
|
h.wg.Add(1)
|
|
|
|
go h.protoTracker()
|
2020-12-14 09:27:15 +00:00
|
|
|
}
|
2015-04-18 00:24:24 +00:00
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
func (h *handler) Stop() {
|
|
|
|
h.txsSub.Unsubscribe() // quits txBroadcastLoop
|
|
|
|
h.minedBlockSub.Unsubscribe() // quits blockBroadcastLoop
|
2019-10-28 11:59:07 +00:00
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
// Quit chainSync and txsync64.
|
|
|
|
// After this is done, no new peers will be accepted.
|
|
|
|
close(h.quitSync)
|
2019-10-28 11:59:07 +00:00
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
// Disconnect existing sessions.
|
|
|
|
// This also closes the gate for any new registrations on the peer set.
|
|
|
|
// sessions which are already established but not added to h.peers yet
|
|
|
|
// will exit when they try to register.
|
|
|
|
h.peers.close()
|
2023-07-11 07:57:42 +00:00
|
|
|
h.wg.Wait()
|
2015-06-30 16:05:06 +00:00
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
log.Info("Ethereum protocol stopped")
|
2015-04-17 23:11:09 +00:00
|
|
|
}
|
2015-04-18 00:21:07 +00:00
|
|
|
|
2020-01-23 15:08:06 +00:00
|
|
|
// BroadcastBlock will either propagate a block to a subset of its peers, or
|
|
|
|
// will only announce its availability (depending what's requested).
|
2020-12-14 09:27:15 +00:00
|
|
|
func (h *handler) BroadcastBlock(block *types.Block, propagate bool) {
|
all: core rework for the merge transition (#23761)
* all: work for eth1/2 transtition
* consensus/beacon, eth: change beacon difficulty to 0
* eth: updates
* all: add terminalBlockDifficulty config, fix rebasing issues
* eth: implemented merge interop spec
* internal/ethapi: update to v1.0.0.alpha.2
This commit updates the code to the new spec, moving payloadId into
it's own object. It also fixes an issue with finalizing an empty blockhash.
It also properly sets the basefee
* all: sync polishes, other fixes + refactors
* core, eth: correct semantics for LeavePoW, EnterPoS
* core: fixed rebasing artifacts
* core: light: performance improvements
* core: use keyed field (f)
* core: eth: fix compilation issues + tests
* eth/catalyst: dbetter error codes
* all: move Merger to consensus/, remove reliance on it in bc
* all: renamed EnterPoS and LeavePoW to ReachTDD and FinalizePoS
* core: make mergelogs a function
* core: use InsertChain instead of InsertBlock
* les: drop merger from lightchain object
* consensus: add merger
* core: recoverAncestors in catalyst mode
* core: fix nitpick
* all: removed merger from beacon, use TTD, nitpicks
* consensus: eth: add docstring, removed unnecessary code duplication
* consensus/beacon: better comment
* all: easy to fix nitpicks by karalabe
* consensus/beacon: verify known headers to be sure
* core: comments
* core: eth: don't drop peers who advertise blocks, nitpicks
* core: never add beacon blocks to the future queue
* core: fixed nitpicks
* consensus/beacon: simplify IsTTDReached check
* consensus/beacon: correct IsTTDReached check
Co-authored-by: rjl493456442 <garyrong0905@gmail.com>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2021-11-26 11:23:02 +00:00
|
|
|
// Disable the block propagation if the chain has already entered the PoS
|
|
|
|
// stage. The block propagation is delegated to the consensus layer.
|
|
|
|
if h.merger.PoSFinalized() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Disable the block propagation if it's the post-merge block.
|
|
|
|
if beacon, ok := h.chain.Engine().(*beacon.Beacon); ok {
|
|
|
|
if beacon.IsPoSHeader(block.Header()) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2015-06-18 13:09:34 +00:00
|
|
|
hash := block.Hash()
|
2021-02-02 08:44:36 +00:00
|
|
|
peers := h.peers.peersWithoutBlock(hash)
|
2015-06-04 15:46:07 +00:00
|
|
|
|
2015-06-18 15:00:19 +00:00
|
|
|
// If propagation is requested, send to a subset of the peer
|
|
|
|
if propagate {
|
2015-07-09 10:55:06 +00:00
|
|
|
// Calculate the TD of the block (it's not imported yet, so block.Td is not valid)
|
|
|
|
var td *big.Int
|
2020-12-14 09:27:15 +00:00
|
|
|
if parent := h.chain.GetBlock(block.ParentHash(), block.NumberU64()-1); parent != nil {
|
|
|
|
td = new(big.Int).Add(block.Difficulty(), h.chain.GetTd(block.ParentHash(), block.NumberU64()-1))
|
2015-07-09 10:55:06 +00:00
|
|
|
} else {
|
2017-03-02 13:06:16 +00:00
|
|
|
log.Error("Propagating dangling block", "number", block.Number(), "hash", hash)
|
2015-07-09 10:55:06 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
// Send the block to a subset of our peers
|
2020-02-17 10:01:03 +00:00
|
|
|
transfer := peers[:int(math.Sqrt(float64(len(peers))))]
|
2015-06-18 15:00:19 +00:00
|
|
|
for _, peer := range transfer {
|
2018-05-21 08:32:42 +00:00
|
|
|
peer.AsyncSendNewBlock(block, td)
|
2015-06-18 15:00:19 +00:00
|
|
|
}
|
2017-03-02 13:06:16 +00:00
|
|
|
log.Trace("Propagated block", "hash", hash, "recipients", len(transfer), "duration", common.PrettyDuration(time.Since(block.ReceivedAt)))
|
2017-08-18 05:52:16 +00:00
|
|
|
return
|
2015-06-04 15:46:07 +00:00
|
|
|
}
|
2015-06-18 15:00:19 +00:00
|
|
|
// Otherwise if the block is indeed in out own chain, announce it
|
2020-12-14 09:27:15 +00:00
|
|
|
if h.chain.HasBlock(hash, block.NumberU64()) {
|
2015-06-18 15:00:19 +00:00
|
|
|
for _, peer := range peers {
|
2018-05-21 08:32:42 +00:00
|
|
|
peer.AsyncSendNewBlockHash(block)
|
2015-06-18 15:00:19 +00:00
|
|
|
}
|
2017-03-02 13:06:16 +00:00
|
|
|
log.Trace("Announced block", "hash", hash, "recipients", len(peers), "duration", common.PrettyDuration(time.Since(block.ReceivedAt)))
|
2015-04-18 00:21:07 +00:00
|
|
|
}
|
|
|
|
}
|
2015-04-22 15:56:06 +00:00
|
|
|
|
2021-02-17 13:59:00 +00:00
|
|
|
// BroadcastTransactions will propagate a batch of transactions
|
2023-10-04 09:36:36 +00:00
|
|
|
// - To a square root of all peers for non-blob transactions
|
2021-02-17 13:59:00 +00:00
|
|
|
// - And, separately, as announcements to all peers which are not known to
|
2015-06-26 17:42:27 +00:00
|
|
|
// already have the given transaction.
|
2021-02-17 13:59:00 +00:00
|
|
|
func (h *handler) BroadcastTransactions(txs types.Transactions) {
|
2019-10-28 11:59:07 +00:00
|
|
|
var (
|
2023-10-04 09:36:36 +00:00
|
|
|
blobTxs int // Number of blob transactions to announce only
|
|
|
|
largeTxs int // Number of large transactions to announce only
|
|
|
|
|
|
|
|
directCount int // Number of transactions sent directly to peers (duplicates included)
|
|
|
|
directPeers int // Number of peers that were sent transactions directly
|
|
|
|
annCount int // Number of transactions announced across all peers (duplicates included)
|
|
|
|
annPeers int // Number of peers announced about transactions
|
2021-02-17 13:59:00 +00:00
|
|
|
|
|
|
|
txset = make(map[*ethPeer][]common.Hash) // Set peer->hash to transfer directly
|
|
|
|
annos = make(map[*ethPeer][]common.Hash) // Set peer->hash to announce
|
2019-10-28 11:59:07 +00:00
|
|
|
)
|
2018-05-10 07:04:45 +00:00
|
|
|
// Broadcast transactions to a batch of peers not knowing about it
|
|
|
|
for _, tx := range txs {
|
2021-02-02 08:44:36 +00:00
|
|
|
peers := h.peers.peersWithoutTransaction(tx.Hash())
|
2023-06-28 09:06:20 +00:00
|
|
|
|
|
|
|
var numDirect int
|
2023-10-04 09:36:36 +00:00
|
|
|
switch {
|
|
|
|
case tx.Type() == types.BlobTxType:
|
|
|
|
blobTxs++
|
|
|
|
case tx.Size() > txMaxBroadcastSize:
|
|
|
|
largeTxs++
|
|
|
|
default:
|
2023-06-28 09:06:20 +00:00
|
|
|
numDirect = int(math.Sqrt(float64(len(peers))))
|
|
|
|
}
|
2021-02-17 13:59:00 +00:00
|
|
|
// Send the tx unconditionally to a subset of our peers
|
|
|
|
for _, peer := range peers[:numDirect] {
|
|
|
|
txset[peer] = append(txset[peer], tx.Hash())
|
|
|
|
}
|
|
|
|
// For the remaining peers, send announcement only
|
|
|
|
for _, peer := range peers[numDirect:] {
|
2019-10-28 11:59:07 +00:00
|
|
|
annos[peer] = append(annos[peer], tx.Hash())
|
2018-05-10 07:04:45 +00:00
|
|
|
}
|
|
|
|
}
|
2021-02-17 13:59:00 +00:00
|
|
|
for peer, hashes := range txset {
|
|
|
|
directPeers++
|
|
|
|
directCount += len(hashes)
|
|
|
|
peer.AsyncSendTransactions(hashes)
|
|
|
|
}
|
2019-10-28 11:59:07 +00:00
|
|
|
for peer, hashes := range annos {
|
2023-10-04 09:36:36 +00:00
|
|
|
annPeers++
|
|
|
|
annCount += len(hashes)
|
2021-04-08 15:06:03 +00:00
|
|
|
peer.AsyncSendPooledTransactionHashes(hashes)
|
2015-04-22 15:56:06 +00:00
|
|
|
}
|
2023-10-04 09:36:36 +00:00
|
|
|
log.Debug("Distributed transactions", "plaintxs", len(txs)-blobTxs-largeTxs, "blobtxs", blobTxs, "largetxs", largeTxs,
|
|
|
|
"bcastpeers", directPeers, "bcastcount", directCount, "annpeers", annPeers, "anncount", annCount)
|
2015-04-22 15:56:06 +00:00
|
|
|
}
|
|
|
|
|
2020-03-27 13:03:20 +00:00
|
|
|
// minedBroadcastLoop sends mined blocks to connected peers.
|
2020-12-14 09:27:15 +00:00
|
|
|
func (h *handler) minedBroadcastLoop() {
|
|
|
|
defer h.wg.Done()
|
2020-03-27 13:03:20 +00:00
|
|
|
|
2020-12-14 09:27:15 +00:00
|
|
|
for obj := range h.minedBlockSub.Chan() {
|
2018-07-30 09:30:09 +00:00
|
|
|
if ev, ok := obj.Data.(core.NewMinedBlockEvent); ok {
|
2020-12-14 09:27:15 +00:00
|
|
|
h.BroadcastBlock(ev.Block, true) // First propagate block to peers
|
|
|
|
h.BroadcastBlock(ev.Block, false) // Only then announce to the rest
|
2015-04-22 15:56:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-27 13:03:20 +00:00
|
|
|
// txBroadcastLoop announces new transactions to connected peers.
|
2020-12-14 09:27:15 +00:00
|
|
|
func (h *handler) txBroadcastLoop() {
|
|
|
|
defer h.wg.Done()
|
2017-08-18 10:58:36 +00:00
|
|
|
for {
|
|
|
|
select {
|
2020-12-14 09:27:15 +00:00
|
|
|
case event := <-h.txsCh:
|
2021-02-17 13:59:00 +00:00
|
|
|
h.BroadcastTransactions(event.Txs)
|
2020-12-14 09:27:15 +00:00
|
|
|
case <-h.txsSub.Err():
|
2017-08-18 10:58:36 +00:00
|
|
|
return
|
|
|
|
}
|
2015-04-22 15:56:06 +00:00
|
|
|
}
|
|
|
|
}
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 19:21:36 +00:00
|
|
|
|
|
|
|
// enableSyncedFeatures enables the post-sync functionalities when the initial
|
|
|
|
// sync is finished.
|
|
|
|
func (h *handler) enableSyncedFeatures() {
|
core, accounts, eth, trie: handle genesis state missing (#28171)
* core, accounts, eth, trie: handle genesis state missing
* core, eth, trie: polish
* core: manage txpool subscription in mainpool
* eth/backend: fix test
* cmd, eth: fix test
* core/rawdb, trie/triedb/pathdb: address comments
* eth, trie: address comments
* eth: inline the function
* eth: use synced flag
* core/txpool: revert changes in txpool
* core, eth, trie: rename functions
2023-09-28 07:00:53 +00:00
|
|
|
// Mark the local node as synced.
|
|
|
|
h.synced.Store(true)
|
|
|
|
|
|
|
|
// If we were running snap sync and it finished, disable doing another
|
|
|
|
// round on next sync cycle
|
|
|
|
if h.snapSync.Load() {
|
|
|
|
log.Info("Snap sync complete, auto disabling")
|
|
|
|
h.snapSync.Store(false)
|
|
|
|
}
|
all: activate pbss as experimental feature (#26274)
* all: activate pbss
* core/rawdb: fix compilation error
* cma, core, eth, les, trie: address comments
* cmd, core, eth, trie: polish code
* core, cmd, eth: address comments
* cmd, core, eth, les, light, tests: address comment
* cmd/utils: shorten log message
* trie/triedb/pathdb: limit node buffer size to 1gb
* cmd/utils: fix opening non-existing db
* cmd/utils: rename flag name
* cmd, core: group chain history flags and fix tests
* core, eth, trie: fix memory leak in snapshot generation
* cmd, eth, internal: deprecate flags
* all: enable state tests for pathdb, fixes
* cmd, core: polish code
* trie/triedb/pathdb: limit the node buffer size to 256mb
---------
Co-authored-by: Martin Holst Swende <martin@swende.se>
Co-authored-by: Péter Szilágyi <peterke@gmail.com>
2023-08-10 19:21:36 +00:00
|
|
|
if h.chain.TrieDB().Scheme() == rawdb.PathScheme {
|
|
|
|
h.chain.TrieDB().SetBufferSize(pathdb.DefaultBufferSize)
|
|
|
|
}
|
|
|
|
}
|