Skip to content

Commit

Permalink
Move CanonChainTracker to storage-api (paradigmxyz#12491)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevencartavia authored Nov 13, 2024
1 parent b0a39e8 commit cef7ec8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions crates/storage/provider/src/traits/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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};

Expand Down
1 change: 1 addition & 0 deletions crates/storage/storage-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 3 additions & 0 deletions crates/storage/storage-api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ pub use transactions::*;
mod trie;
pub use trie::*;

mod chain_info;
pub use chain_info::*;

mod withdrawals;
pub use withdrawals::*;

Expand Down

0 comments on commit cef7ec8

Please sign in to comment.