diff --git a/crates/rpc/rpc-eth-api/src/bundle.rs b/crates/rpc/rpc-eth-api/src/bundle.rs index bb213c33f..75ec169ac 100644 --- a/crates/rpc/rpc-eth-api/src/bundle.rs +++ b/crates/rpc/rpc-eth-api/src/bundle.rs @@ -1,6 +1,6 @@ //! Additional `eth_` RPC API for bundles. //! -//! See also +//! See also use alloy_primitives::{Bytes, B256}; use alloy_rpc_types_mev::{ @@ -24,7 +24,7 @@ pub trait EthCallBundleApi { /// The __full__ Eth bundle rpc interface. /// -/// See also +/// See also #[cfg_attr(not(feature = "client"), rpc(server, namespace = "eth"))] #[cfg_attr(feature = "client", rpc(server, client, namespace = "eth"))] pub trait EthBundleApi { @@ -41,7 +41,7 @@ pub trait EthBundleApi { request: EthCallBundle, ) -> jsonrpsee::core::RpcResult; - /// `eth_cancelBundle` is used to prevent a submitted bundle from being included on-chain. See [bundle cancellations](https://docs.flashbots.net/flashbots-auction/searchers/advanced/bundle-cancellations) for more information. + /// `eth_cancelBundle` is used to prevent a submitted bundle from being included on-chain. See [bundle cancellations](https://docs.flashbots.net/flashbots-auction/advanced/bundle-cancellations) for more information. #[method(name = "cancelBundle")] async fn cancel_bundle(&self, request: CancelBundleRequest) -> jsonrpsee::core::RpcResult<()>;