diff --git a/bin/reth/src/forwarder.rs b/bin/reth/src/forwarder.rs index 4f8e2ab46..dfe8dfe39 100644 --- a/bin/reth/src/forwarder.rs +++ b/bin/reth/src/forwarder.rs @@ -8,7 +8,6 @@ use jsonrpsee_core::{async_trait, client::ClientT, ClientError, RpcResult}; #[rpc(server, namespace = "eth")] pub(crate) trait EthForwarderApi { - /// Returns block 0. #[method(name = "sendRawTransaction")] async fn send_raw_transaction(&self, tx: Bytes) -> RpcResult; }