chore: move hashing writer trait (#12597)

This commit is contained in:
Matthias Seitz
2024-11-16 10:37:14 +01:00
committed by GitHub
parent 3614a37ff6
commit 1945cd8b42
3 changed files with 2 additions and 3 deletions

View File

@@ -17,9 +17,6 @@ pub use state::{StateChangeWriter, StateWriter};
pub use reth_chainspec::ChainSpecProvider;
mod hashing;
pub use hashing::HashingWriter;
mod trie;
pub use trie::{StorageTrieWriter, TrieWriter};

View File

@@ -60,5 +60,7 @@ pub mod noop;
mod history;
pub use history::*;
mod hashing;
pub use hashing::*;
mod stats;
pub use stats::*;