mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-01 02:25:24 -05:00
chore: use engine types crate for types (#8170)
This commit is contained in:
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -7589,6 +7589,7 @@ name = "reth-provider"
|
||||
version = "0.2.0-beta.7"
|
||||
dependencies = [
|
||||
"alloy-rlp",
|
||||
"alloy-rpc-types-engine",
|
||||
"assert_matches",
|
||||
"auto_impl",
|
||||
"dashmap",
|
||||
@@ -7605,7 +7606,6 @@ dependencies = [
|
||||
"reth-metrics",
|
||||
"reth-nippy-jar",
|
||||
"reth-primitives",
|
||||
"reth-rpc-types",
|
||||
"reth-trie",
|
||||
"revm",
|
||||
"strum",
|
||||
|
||||
@@ -15,13 +15,14 @@ workspace = true
|
||||
# reth
|
||||
reth-primitives.workspace = true
|
||||
reth-interfaces.workspace = true
|
||||
reth-rpc-types.workspace = true
|
||||
reth-db.workspace = true
|
||||
reth-trie = { workspace = true, features = ["metrics"] }
|
||||
reth-nippy-jar.workspace = true
|
||||
reth-codecs.workspace = true
|
||||
reth-evm.workspace = true
|
||||
|
||||
# ethereum
|
||||
alloy-rpc-types-engine.workspace = true
|
||||
revm.workspace = true
|
||||
|
||||
# async
|
||||
|
||||
@@ -60,8 +60,8 @@ mod chain_info;
|
||||
use chain_info::ChainInfoTracker;
|
||||
|
||||
mod consistent_view;
|
||||
use alloy_rpc_types_engine::ForkchoiceState;
|
||||
pub use consistent_view::{ConsistentDbView, ConsistentViewError};
|
||||
use reth_rpc_types::engine::ForkchoiceState;
|
||||
|
||||
/// The main type for interacting with the blockchain.
|
||||
///
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
use alloy_rpc_types_engine::ForkchoiceState;
|
||||
use reth_primitives::SealedHeader;
|
||||
use reth_rpc_types::engine::ForkchoiceState;
|
||||
use std::time::Instant;
|
||||
|
||||
/// A type that can track updates related to fork choice updates.
|
||||
|
||||
Reference in New Issue
Block a user