You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let hex = hex::encode(wallet.signer().to_bytes());
183
-
let _ = write!(config_string,"\n({}) 0x{}", idx, hex);
183
+
let _ = write!(config_string,"\n({idx}) 0x{hex}");
184
184
}
185
185
186
186
ifletSome(ref gen) = self.account_generator{
@@ -773,7 +773,7 @@ impl NodeConfig {
773
773
fork_block_number, latest_block
774
774
);
775
775
}
776
-
panic!("Failed to get block for block number: {}", fork_block_number)
776
+
panic!("Failed to get block for block number: {fork_block_number}")
777
777
};
778
778
779
779
// we only use the gas limit value of the block if it is non-zero, since there are networks where this is not used and is always `0x0` which would inevitably result in `OutOfGas` errors as soon as the evm is about to record gas, See also <https://github.com/foundry-rs/foundry/issues/3247>
0 commit comments