mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-25 23:28:03 -05:00
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:
@@ -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;
|
||||
|
||||
@@ -96,3 +96,6 @@ pub use block_indices::*;
|
||||
|
||||
mod block_writer;
|
||||
pub use block_writer::*;
|
||||
|
||||
mod state_writer;
|
||||
pub use state_writer::*;
|
||||
|
||||
@@ -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,
|
||||
Reference in New Issue
Block a user