Move CanonChainTracker to storage-api (#12491)

This commit is contained in:
Steven
2024-11-12 19:00:07 -06:00
committed by GitHub
parent b0a39e8abc
commit cef7ec80c1
5 changed files with 5 additions and 3 deletions

1
Cargo.lock generated
View File

@ -9121,6 +9121,7 @@ dependencies = [
"alloy-consensus",
"alloy-eips",
"alloy-primitives",
"alloy-rpc-types-engine",
"auto_impl",
"reth-chainspec",
"reth-db",

View File

@ -9,9 +9,6 @@ pub use reth_evm::provider::EvmEnvProvider;
mod block;
pub use block::*;
mod chain_info;
pub use chain_info::CanonChainTracker;
mod header_sync_gap;
pub use header_sync_gap::{HeaderSyncGap, HeaderSyncGapProvider};

View File

@ -28,5 +28,6 @@ reth-db.workspace = true
alloy-eips.workspace = true
alloy-primitives.workspace = true
alloy-consensus.workspace = true
alloy-rpc-types-engine.workspace = true
auto_impl.workspace = true

View File

@ -46,6 +46,9 @@ pub use transactions::*;
mod trie;
pub use trie::*;
mod chain_info;
pub use chain_info::*;
mod withdrawals;
pub use withdrawals::*;