Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 3 additions & 1 deletion crates/node-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ reth-rpc.workspace = true
reth-rpc-types.workspace = true
reth-rpc-types-compat.workspace = true
reth-rpc-api = { workspace = true, features = ["client"] }
reth-rpc-layer.workspace = true
reth-transaction-pool.workspace = true
reth-tracing.workspace = true
reth-config.workspace = true
Expand All @@ -38,6 +37,9 @@ reth-tasks.workspace = true
reth-consensus-common.workspace = true
reth-beacon-consensus.workspace = true

# ethereum
alloy-rpc-types-engine.workspace = true

# ethereum
discv5.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion crates/node-core/src/args/rpc_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ use crate::{
cli::config::RethRpcConfig,
utils::get_or_create_jwt_secret_from_path,
};
use alloy_rpc_types_engine::{JwtError, JwtSecret};
use clap::{
builder::{PossibleValue, RangedU64ValueParser, TypedValueParser},
Arg, Args, Command,
Expand All @@ -31,7 +32,6 @@ use reth_rpc_builder::{
RpcServerConfig, RpcServerHandle, ServerBuilder, TransportRpcModuleConfig,
};
use reth_rpc_engine_api::EngineApi;
use reth_rpc_layer::{JwtError, JwtSecret};
use reth_tasks::TaskSpawner;
use reth_transaction_pool::TransactionPool;
use std::{
Expand Down
2 changes: 1 addition & 1 deletion crates/node-core/src/cli/config.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
//! Config traits for various node components.

use alloy_rpc_types_engine::{JwtError, JwtSecret};
use reth_network::protocol::IntoRlpxSubProtocol;
use reth_primitives::Bytes;
use reth_rpc::eth::{cache::EthStateCacheConfig, gas_oracle::GasPriceOracleConfig};
use reth_rpc_builder::{
auth::AuthServerConfig, error::RpcError, EthConfig, Identity, IpcServerBuilder,
RpcServerConfig, ServerBuilder, TransportRpcModuleConfig,
};
use reth_rpc_layer::{JwtError, JwtSecret};
use reth_transaction_pool::PoolConfig;
use std::{borrow::Cow, path::PathBuf, time::Duration};

Expand Down