Skip to content

Commit

Permalink
fix: remove U64 cast
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg committed Nov 21, 2023
1 parent 67a22f5 commit 6504cc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/evm/core/src/fork/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ mod tests {
async fn can_read_write_cache() {
let provider = get_http_provider(ENDPOINT);

let block_num = provider.get_block_number().await.unwrap().to();
let block_num = provider.get_block_number().await.unwrap();

let config = Config::figment();
let mut evm_opts = config.extract::<EvmOpts>().unwrap();
Expand Down

0 comments on commit 6504cc0

Please sign in to comment.