mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-29 00:58:11 -05:00
chore(trie): remove obsolete sender type (#2331)
This commit is contained in:
@@ -8,11 +8,7 @@ use reth_primitives::{
|
||||
trie::{BranchNodeCompact, HashBuilderState, HashBuilderValue, TrieMask},
|
||||
H256,
|
||||
};
|
||||
use std::{collections::BTreeMap, fmt::Debug, sync::mpsc};
|
||||
|
||||
/// A type alias for a sender of branch nodes.
|
||||
/// Branch nodes are sent by the Hash Builder to be stored in the database.
|
||||
pub type BranchNodeSender = mpsc::Sender<(Nibbles, BranchNodeCompact)>;
|
||||
use std::{collections::BTreeMap, fmt::Debug};
|
||||
|
||||
/// A component used to construct the root hash of the trie. The primary purpose of a Hash Builder
|
||||
/// is to build the Merkle proof that is essential for verifying the integrity and authenticity of
|
||||
|
||||
Reference in New Issue
Block a user