rpc-types: rm alloy-rpc-types-engine reexport (#11206)

This commit is contained in:
Thomas Coratger
2024-09-25 16:49:50 +02:00
committed by GitHub
parent 3d034519af
commit c00516c3f9
48 changed files with 111 additions and 134 deletions

View File

@ -2,6 +2,7 @@
//! blocks from the network.
use alloy_primitives::Sealable;
use alloy_rpc_types_engine::{JwtError, JwtSecret};
use eyre::Result;
use reth_chainspec::ChainSpec;
use reth_consensus_common::validation::validate_block_pre_execution;
@ -11,7 +12,6 @@ use reth_network_p2p::{
priority::Priority,
};
use reth_primitives::{BlockHashOrNumber, SealedBlock, SealedHeader};
use reth_rpc_types::engine::{JwtError, JwtSecret};
use std::{
env::VarError,
path::{Path, PathBuf},

View File

@ -1,6 +1,6 @@
//! Version information for reth.
use alloy_rpc_types_engine::ClientCode;
use reth_db::ClientVersion;
use reth_rpc_types::engine::ClientCode;
/// The client code for Reth
pub const CLIENT_CODE: ClientCode = ClientCode::RH;