chore: move primitives/trie to reth-trie-types (#8717)

This commit is contained in:
joshieDo
2024-06-10 17:00:14 +02:00
committed by GitHub
parent 76a1a3d005
commit b16a6ec029
59 changed files with 283 additions and 234 deletions

View File

@ -17,6 +17,7 @@ reth-codecs.workspace = true
reth-primitives.workspace = true
reth-prune-types.workspace = true
reth-storage-errors.workspace = true
reth-trie-types.workspace = true
# codecs
modular-bitfield.workspace = true

View File

@ -5,12 +5,9 @@ use crate::{
DatabaseError,
};
use reth_codecs::{main_codec, Compact};
use reth_primitives::{
stage::StageCheckpoint,
trie::{StoredNibbles, StoredNibblesSubKey, *},
Address, B256, *,
};
use reth_primitives::{stage::StageCheckpoint, Address, B256, *};
use reth_prune_types::{PruneCheckpoint, PruneSegment};
use reth_trie_types::{StoredNibbles, StoredNibblesSubKey, *};
pub mod accounts;
pub mod blocks;