Skip to content

Commit

Permalink
fix: made the scenario/XXX_GAS columns 64 bit integers
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierBBB committed Dec 6, 2024
1 parent 9e04fe1 commit dcd3b8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hub/columns/scenario.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
(PRC_FAILURE_KNOWN_TO_HUB :binary@prove)
(PRC_FAILURE_KNOWN_TO_RAM :binary@prove)
;; gas parameters (RETURN_GAS is a prediction)
(PRC_CALLER_GAS :i32)
(PRC_CALLEE_GAS :i32)
(PRC_RETURN_GAS :i32)
(PRC_CALLER_GAS :i64)
(PRC_CALLEE_GAS :i64)
(PRC_RETURN_GAS :i64)
;; duplicate values for precompile calls
(PRC_CDO :i32)
(PRC_CDS :i32)
Expand Down

0 comments on commit dcd3b8c

Please sign in to comment.