reth_rpc/eth/helpers/trace.rs
1//! Contains RPC handler implementations specific to tracing.
2
3use reth_rpc_convert::RpcConvert;
4use reth_rpc_eth_api::{helpers::Trace, FromEvmError, RpcNodeCore};
5use reth_rpc_eth_types::EthApiError;
6
7use crate::EthApi;
8
9impl<N, Rpc> Trace for EthApi<N, Rpc>
10where
11 N: RpcNodeCore,
12 EthApiError: FromEvmError<N::Evm>,
13 Rpc: RpcConvert<Primitives = N::Primitives>,
14{
15}