refactor(storage-api): move statewriter trait to storage-api crate (#15894)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
Veer Chaurasia
2025-04-24 14:06:02 +05:30
committed by GitHub
parent ddba222c08
commit 8e8ec019df
3 changed files with 4 additions and 4 deletions

View File

@@ -9,9 +9,6 @@ pub use block::*;
mod header_sync_gap;
pub use header_sync_gap::{HeaderSyncGap, HeaderSyncGapProvider};
mod state;
pub use state::StateWriter;
pub use reth_chainspec::ChainSpecProvider;
mod static_file_provider;

View File

@@ -96,3 +96,6 @@ pub use block_indices::*;
mod block_writer;
pub use block_writer::*;
mod state_writer;
pub use state_writer::*;

View File

@@ -1,7 +1,7 @@
use alloy_primitives::BlockNumber;
use reth_execution_types::ExecutionOutcome;
use reth_storage_errors::provider::ProviderResult;
use reth_trie::HashedPostStateSorted;
use reth_trie_common::HashedPostStateSorted;
use revm_database::{
states::{PlainStateReverts, StateChangeset},
OriginalValuesKnown,