mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
feat: add forkchoice update tracker type (#2555)
Co-authored-by: Dan Cline <6798349+Rjected@users.noreply.github.com>
This commit is contained in:
@ -190,7 +190,7 @@ impl Command {
|
||||
|
||||
// setup the blockchain provider
|
||||
let shareable_db = ShareableDatabase::new(Arc::clone(&db), Arc::clone(&self.chain));
|
||||
let blockchain_db = BlockchainProvider::new(shareable_db, blockchain_tree.clone());
|
||||
let blockchain_db = BlockchainProvider::new(shareable_db, blockchain_tree.clone())?;
|
||||
|
||||
let transaction_pool = reth_transaction_pool::Pool::eth_pool(
|
||||
EthTransactionValidator::new(blockchain_db.clone(), Arc::clone(&self.chain)),
|
||||
@ -341,7 +341,7 @@ impl Command {
|
||||
Arc::clone(&db),
|
||||
ctx.task_executor.clone(),
|
||||
pipeline,
|
||||
blockchain_tree.clone(),
|
||||
blockchain_db.clone(),
|
||||
self.debug.max_block,
|
||||
self.debug.continuous,
|
||||
payload_builder.clone(),
|
||||
|
||||
Reference in New Issue
Block a user