Skip to content

Commit

Permalink
fix base_fee test
Browse files Browse the repository at this point in the history
  • Loading branch information
nbaztec committed Jan 27, 2025
1 parent e3c3865 commit eefe0a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/anvil/src/eth/backend/mem/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ impl Backend {
.ok_or(BlockchainError::BlockNotFound)?;
// update all settings related to the forked block
{
if let Some(fork_url) = forking.json_rpc_url.or(maybe_rpc_url) {
if let Some(fork_url) = forking.json_rpc_url {
// Set the fork block number
let mut node_config = self.node_config.write().await;
node_config.fork_choice = Some(ForkChoice::Block(fork_block_number));
Expand Down

0 comments on commit eefe0a0

Please sign in to comment.