mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: fix some warnings (#7515)
This commit is contained in:
@ -13,6 +13,5 @@ reth-primitives.workspace = true
|
||||
reth-node-ethereum.workspace = true
|
||||
reth-tracing.workspace = true
|
||||
|
||||
alloy-chains.workspace = true
|
||||
eyre.workspace = true
|
||||
tokio.workspace = true
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
|
||||
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
|
||||
|
||||
use alloy_chains::Chain;
|
||||
use reth::{
|
||||
builder::{node::NodeTypes, NodeBuilder},
|
||||
primitives::{
|
||||
@ -21,7 +20,7 @@ use reth::{
|
||||
use reth_node_api::{ConfigureEvm, ConfigureEvmEnv};
|
||||
use reth_node_core::{args::RpcServerArgs, node_config::NodeConfig};
|
||||
use reth_node_ethereum::{EthEngineTypes, EthEvmConfig, EthereumNode};
|
||||
use reth_primitives::{ChainSpec, Genesis, Header, Transaction};
|
||||
use reth_primitives::{Chain, ChainSpec, Genesis, Header, Transaction};
|
||||
use reth_tracing::{RethTracer, Tracer};
|
||||
use std::sync::Arc;
|
||||
|
||||
|
||||
@ -17,7 +17,6 @@ reth-ethereum-payload-builder.workspace = true
|
||||
reth-node-ethereum.workspace = true
|
||||
reth-tracing.workspace = true
|
||||
|
||||
alloy-chains.workspace = true
|
||||
eyre.workspace = true
|
||||
tokio.workspace = true
|
||||
thiserror.workspace = true
|
||||
|
||||
@ -17,7 +17,6 @@
|
||||
|
||||
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
|
||||
|
||||
use alloy_chains::Chain;
|
||||
use reth::{
|
||||
builder::{
|
||||
components::{ComponentsBuilder, PayloadServiceBuilder},
|
||||
@ -46,7 +45,7 @@ use reth_payload_builder::{
|
||||
error::PayloadBuilderError, EthBuiltPayload, EthPayloadBuilderAttributes, PayloadBuilderHandle,
|
||||
PayloadBuilderService,
|
||||
};
|
||||
use reth_primitives::{Address, ChainSpec, Genesis, Header, Withdrawals, B256};
|
||||
use reth_primitives::{Address, Chain, ChainSpec, Genesis, Header, Withdrawals, B256};
|
||||
use reth_rpc_types::{
|
||||
engine::{
|
||||
ExecutionPayloadEnvelopeV2, ExecutionPayloadEnvelopeV3,
|
||||
|
||||
Reference in New Issue
Block a user