Skip to content

Commit

Permalink
clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Jul 25, 2023
1 parent f202070 commit 5828110
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/rpc/rpc-builder/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -886,9 +886,9 @@ where
) -> Vec<Methods> {
let EthHandlers {
api: eth_api,
cache: eth_cache,
filter: eth_filter,
pubsub: eth_pubsub,
cache: _,
tracing_call_pool: _,
} = self.with_eth(|eth| eth.clone());

Expand Down
3 changes: 2 additions & 1 deletion crates/rpc/rpc/src/eth/api/transactions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ pub(crate) type StateCacheDB<'r> = CacheDB<State<StateProviderBox<'r>>>;

/// Commonly used transaction related functions for the [EthApi] type in the `eth_` namespace.
///
/// Async functions that are spawned onto the [TracingCallPool] begin with `spawn_`
/// Async functions that are spawned onto the
/// [TracingCallPool](crate::tracing_call::TracingCallPool) begin with `spawn_`
#[async_trait::async_trait]
pub trait EthTransactions: Send + Sync {
/// Returns default gas limit to use for `eth_call` and tracing RPC methods.
Expand Down

0 comments on commit 5828110

Please sign in to comment.