Skip to content

Commit

Permalink
Fix clippy ref usage
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrylavrenov committed Dec 11, 2023
1 parent 2f394d6 commit 62dd6c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/humanode-peer/src/cli/params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ pub struct EthereumRpcParams {
#[arg(long, value_enum, ignore_case = true, default_value_t = FrontierBackendType::default())]
pub frontier_backend_type: FrontierBackendType,

// Sets the SQL backend's pool size.
/// Sets the SQL backend's pool size.
#[arg(long, default_value = "100")]
pub frontier_sql_backend_pool_size: u32,

Expand Down
2 changes: 1 addition & 1 deletion crates/humanode-peer/src/service/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ pub fn new_partial(
let frontier_backend = frontier::frontier_backend(
config,
Arc::clone(&client),
&eth_rpc,
eth_rpc,
fc_storage::overrides_handle(Arc::clone(&client)),
);
let frontier_block_import = FrontierBlockImport::new(babe_block_import, Arc::clone(&client));
Expand Down

0 comments on commit 62dd6c2

Please sign in to comment.