diff --git a/crates/rpc/rpc/src/txpool.rs b/crates/rpc/rpc/src/txpool.rs index 9fb61c391633..e6f7d66b51e8 100644 --- a/crates/rpc/rpc/src/txpool.rs +++ b/crates/rpc/rpc/src/txpool.rs @@ -127,9 +127,9 @@ where /// block(s), as well as the ones that are being scheduled for future execution only. /// /// See [here](https://geth.ethereum.org/docs/rpc/ns-txpool#txpool_content) for more details - /// Handler for `txpool_inspect` + /// Handler for `txpool_content` async fn txpool_content(&self) -> Result { - trace!(target: "rpc::eth", "Serving txpool_inspect"); + trace!(target: "rpc::eth", "Serving txpool_content"); Ok(self.content()) } }