Skip to content

Commit

Permalink
chore(zint): decrease the preset gas limit for evm
Browse files Browse the repository at this point in the history
  • Loading branch information
clearloop committed Aug 3, 2023
1 parent dcde1bb commit d08f217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zint/src/evm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pub use revm_interpreter::instruction_result::InstructionResult;
use revm_interpreter::{Contract, DummyHost, Interpreter};
use revm_primitives::{bytecode::Bytecode, specification::ShanghaiSpec, U256};

const INITIAL_GAS: u64 = 1_000_000_000_000_000;
const INITIAL_GAS: u64 = 1_000_000_000;

/// EVM execution result info.
#[derive(Debug)]
Expand Down

0 comments on commit d08f217

Please sign in to comment.