mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 19:09:54 +00:00
perf(tree): cache canonical trie updates (#5871)
This commit is contained in:
@ -192,8 +192,11 @@ where
|
||||
|
||||
debug!(target: "consensus::auto", header=?sealed_block_with_senders.hash(), "sending block notification");
|
||||
|
||||
let chain =
|
||||
Arc::new(Chain::new(vec![sealed_block_with_senders], bundle_state));
|
||||
let chain = Arc::new(Chain::new(
|
||||
vec![sealed_block_with_senders],
|
||||
bundle_state,
|
||||
None,
|
||||
));
|
||||
|
||||
// send block notification
|
||||
let _ = canon_state_notification
|
||||
|
||||
Reference in New Issue
Block a user