chore(trie): move trie updates to reth-trie-common (#12863)

This commit is contained in:
Roman Krasiuk
2024-11-26 13:09:12 +01:00
committed by GitHub
parent 26fc701814
commit 2dc92880ba
17 changed files with 113 additions and 114 deletions

View File

@ -146,7 +146,7 @@ pub fn calculate_root_from_leaves_repeated(c: &mut Criterion) {
hb.root();
if storage_updates.peek().is_some() {
trie_updates.finalize(node_iter.walker, hb);
trie_updates.finalize(hb, node_iter.walker.take_removed_keys());
}
}
},