reth_rpc/eth/helpers/
trace.rs

1
2
3
4
5
6
7
8
9
10
11
12
//! Contains RPC handler implementations specific to tracing.

use alloy_consensus::Header;
use reth_evm::ConfigureEvm;
use reth_rpc_eth_api::helpers::{LoadState, Trace};

use crate::EthApi;

impl<Provider, Pool, Network, EvmConfig> Trace for EthApi<Provider, Pool, Network, EvmConfig> where
    Self: LoadState<Evm: ConfigureEvm<Header = Header>>
{
}