primitives: rm more alloy block reexports (#12308)

This commit is contained in:
Thomas Coratger
2024-11-05 12:37:56 +01:00
committed by GitHub
parent 556995fc5d
commit 441ddbf085
23 changed files with 38 additions and 41 deletions

View File

@ -13,7 +13,6 @@ workspace = true
[dependencies]
# reth
reth-primitives.workspace = true
reth-rpc-eth-api.workspace = true
reth-engine-primitives.workspace = true
reth-network-peers.workspace = true

View File

@ -1,4 +1,4 @@
use alloy_eips::BlockId;
use alloy_eips::{BlockId, BlockNumberOrTag};
use alloy_primitives::{Address, Bytes, B256};
use alloy_rpc_types::{Block, Bundle, StateContext};
use alloy_rpc_types_debug::ExecutionWitness;
@ -7,7 +7,6 @@ use alloy_rpc_types_trace::geth::{
BlockTraceResult, GethDebugTracingCallOptions, GethDebugTracingOptions, GethTrace, TraceResult,
};
use jsonrpsee::{core::RpcResult, proc_macros::rpc};
use reth_primitives::BlockNumberOrTag;
/// Debug rpc interface.
#[cfg_attr(not(feature = "client"), rpc(server, namespace = "debug"))]