Skip to content

Commit 972acb9

Browse files
committed
fixed missing trait bound
1 parent ed104a9 commit 972acb9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/ethereum/node/src/node.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,8 @@ where
319319
}
320320
}
321321

322-
impl<N, EthB, PVB, EB, EVB> RethRpcAddOns<N> for EthereumAddOns<N, EthB, PVB, EB, EVB>
322+
impl<N, EthB, PVB, EB, EVB, RpcMiddleware> RethRpcAddOns<N>
323+
for EthereumAddOns<N, EthB, PVB, EB, EVB, RpcMiddleware>
323324
where
324325
N: FullNodeComponents<
325326
Types: NodeTypes<
@@ -335,6 +336,7 @@ where
335336
EVB: EngineValidatorBuilder<N>,
336337
EthApiError: FromEvmError<N::Evm>,
337338
EvmFactoryFor<N::Evm>: EvmFactory<Tx = TxEnv>,
339+
RpcMiddleware: RethRpcMiddleware,
338340
{
339341
type EthApi = EthB::EthApi;
340342

0 commit comments

Comments
 (0)