mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Move CanonChainTracker to storage-api (#12491)
This commit is contained in:
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -9121,6 +9121,7 @@ dependencies = [
|
||||
"alloy-consensus",
|
||||
"alloy-eips",
|
||||
"alloy-primitives",
|
||||
"alloy-rpc-types-engine",
|
||||
"auto_impl",
|
||||
"reth-chainspec",
|
||||
"reth-db",
|
||||
|
||||
@ -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};
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
@ -46,6 +46,9 @@ pub use transactions::*;
|
||||
mod trie;
|
||||
pub use trie::*;
|
||||
|
||||
mod chain_info;
|
||||
pub use chain_info::*;
|
||||
|
||||
mod withdrawals;
|
||||
pub use withdrawals::*;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user