Skip to content

Commit

Permalink
chore(interpreter): use max gas limit in `impl Default for Interprete…
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Jun 1, 2024
1 parent fadf6fb commit 6df5d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/interpreter/src/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub struct Interpreter {

impl Default for Interpreter {
fn default() -> Self {
Self::new(Contract::default(), 0, false)
Self::new(Contract::default(), u64::MAX, false)
}
}

Expand Down

0 comments on commit 6df5d20

Please sign in to comment.