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