mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-09 15:28:01 -05:00
perf(trie): implement remove_leaf for ParallelSparseTrie (#17035)
This commit is contained in:
@@ -170,6 +170,12 @@ pub enum SparseTrieErrorKind {
|
||||
/// RLP error.
|
||||
#[error(transparent)]
|
||||
Rlp(#[from] alloy_rlp::Error),
|
||||
/// Node not found in provider during revealing.
|
||||
#[error("node {path:?} not found in provider during removal")]
|
||||
NodeNotFoundInProvider {
|
||||
/// Path to the missing node.
|
||||
path: Nibbles,
|
||||
},
|
||||
/// Other.
|
||||
#[error(transparent)]
|
||||
Other(#[from] Box<dyn core::error::Error + Send>),
|
||||
|
||||
Reference in New Issue
Block a user