diff --git a/src/node/in_memory.rs b/src/node/in_memory.rs index d964440b..8b15321a 100644 --- a/src/node/in_memory.rs +++ b/src/node/in_memory.rs @@ -1875,7 +1875,7 @@ impl InMemoryNode { // Calculate how much gas was used across all txs let gas_used = debug_calls .iter() - .map(|r| U256::from(r.gas_used)) + .map(|r| r.gas_used) .fold(U256::zero(), |acc, x| acc + x); // Construct the block