feat(engine): parallel sparse storage roots (#13269)

This commit is contained in:
Alexey Shekhirin
2024-12-10 18:29:07 +00:00
committed by GitHub
parent 88a9bd72d4
commit 8aada7a243
3 changed files with 58 additions and 25 deletions

View File

@ -107,14 +107,14 @@ pub enum SparseTrieError {
/// Path to the node.
path: Nibbles,
/// Node that was at the path when revealing.
node: Box<dyn core::fmt::Debug>,
node: Box<dyn core::fmt::Debug + Send>,
},
/// RLP error.
#[error(transparent)]
Rlp(#[from] alloy_rlp::Error),
/// Other.
#[error(transparent)]
Other(#[from] Box<dyn core::error::Error>),
Other(#[from] Box<dyn core::error::Error + Send>),
}
/// Trie witness errors.