Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dapplion committed Sep 28, 2024
1 parent f2a7459 commit 4769a87
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ where
}
}

#[allow(clippy::too_many_arguments)]
pub(crate) fn gnosis_post_block_system_calls<EvmConfig, DB>(
chain_spec: &ChainSpec,
evm_config: &EvmConfig,
Expand Down Expand Up @@ -291,7 +292,7 @@ where
let withdrawals = withdrawals.ok_or(BlockExecutionError::Other(
"block has no withdrawals field".to_owned().into(),
))?;
apply_withdrawals_contract_call(evm_config, &chain_spec, withdrawals, &mut evm)?;
apply_withdrawals_contract_call(evm_config, chain_spec, withdrawals, &mut evm)?;
}

let balance_increments = apply_block_rewards_contract_call(
Expand Down

0 comments on commit 4769a87

Please sign in to comment.