Skip to content

Commit d8dd94c

Browse files
reduced sizes of gas zkASM columns
1 parent d301485 commit d8dd94c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gas/gas.zkasm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
;; "Out Of Gas Exception". When OOGX==1, it means the corresponding
55
;; instruction generated an out-of-gas exception (rather than some
66
;; other exception kind).
7-
pub fn gas(GAS_COST u64, GAS_ACTUAL u64, XAHOY u1, OOGX u1) {
8-
var tmp u64
7+
pub fn gas(GAS_COST u32, GAS_ACTUAL u32, XAHOY u1, OOGX u1) {
8+
var tmp u32
99
var b u1
1010
;;
1111
b, tmp = GAS_ACTUAL - GAS_COST

0 commit comments

Comments
 (0)