From 2108ce8bbb3667e37c13efc3305d527be091f809 Mon Sep 17 00:00:00 2001 From: Lorenzo Gentile Date: Mon, 1 Dec 2025 13:50:42 +0100 Subject: [PATCH 01/12] reduced size of GAS_CUMULATIVE, GAS_LEFTOVER, REFUND_COUNTER_FINAL, REFUND_COUNTER, REFUND_EFFECTIVE --- txndata/cancun/columns/common.lisp | 2 +- txndata/cancun/columns/hub_view.lisp | 6 +++--- txndata/london/columns.lisp | 8 ++++---- txndata/osaka/columns/common.lisp | 2 +- txndata/osaka/columns/hub_view.lisp | 6 +++--- txndata/prague/columns/common.lisp | 2 +- txndata/prague/columns/hub_view.lisp | 6 +++--- txndata/shanghai/columns.lisp | 8 ++++---- 8 files changed, 20 insertions(+), 20 deletions(-) diff --git a/txndata/cancun/columns/common.lisp b/txndata/cancun/columns/common.lisp index f2f0138a0..c0cdceff3 100644 --- a/txndata/cancun/columns/common.lisp +++ b/txndata/cancun/columns/common.lisp @@ -24,6 +24,6 @@ ;; heartbeat ( CT :i4 ) ( CT_MAX :i4 ) - ( GAS_CUMULATIVE :i128 ) + ( GAS_CUMULATIVE :i64 ) ) diff --git a/txndata/cancun/columns/hub_view.lisp b/txndata/cancun/columns/hub_view.lisp index b6e3b69bf..242b48681 100644 --- a/txndata/cancun/columns/hub_view.lisp +++ b/txndata/cancun/columns/hub_view.lisp @@ -40,9 +40,9 @@ ( CFI :i16 ) ( INIT_BALANCE :i128 ) ( STATUS_CODE :binary@prove ) - ( GAS_LEFTOVER :i128 ) - ( REFUND_COUNTER_FINAL :i128 ) - ( REFUND_EFFECTIVE :i128 ) + ( GAS_LEFTOVER :i64 ) + ( REFUND_COUNTER_FINAL :i64 ) + ( REFUND_EFFECTIVE :i64 ) ( EIP_4788 :binary@prove ) ( EIP_2935 :binary@prove ) ( NOOP :binary@prove ) diff --git a/txndata/london/columns.lisp b/txndata/london/columns.lisp index f4c626eab..e2056dd5d 100644 --- a/txndata/london/columns.lisp +++ b/txndata/london/columns.lisp @@ -30,10 +30,10 @@ (TYPE2 :binary@prove) (REQUIRES_EVM_EXECUTION :binary@prove) (COPY_TXCD :binary@prove) - (GAS_LEFTOVER :i128) - (REFUND_COUNTER :i128) - (REFUND_EFFECTIVE :i128) - (GAS_CUMULATIVE :i128) + (GAS_LEFTOVER :i64 ) + (REFUND_COUNTER :i64 ) + (REFUND_EFFECTIVE :i64 ) + (GAS_CUMULATIVE :i64 ) (STATUS_CODE :binary@prove) (PHASE_RLP_TXN :byte) (PHASE_RLP_TXNRCPT :byte) diff --git a/txndata/osaka/columns/common.lisp b/txndata/osaka/columns/common.lisp index d5f4da6c7..76f54e741 100644 --- a/txndata/osaka/columns/common.lisp +++ b/txndata/osaka/columns/common.lisp @@ -24,6 +24,6 @@ ;; heartbeat ( CT :i5 ) ( CT_MAX :i5 ) - ( GAS_CUMULATIVE :i128 ) + ( GAS_CUMULATIVE :i64 ) ) diff --git a/txndata/osaka/columns/hub_view.lisp b/txndata/osaka/columns/hub_view.lisp index b6e3b69bf..242b48681 100644 --- a/txndata/osaka/columns/hub_view.lisp +++ b/txndata/osaka/columns/hub_view.lisp @@ -40,9 +40,9 @@ ( CFI :i16 ) ( INIT_BALANCE :i128 ) ( STATUS_CODE :binary@prove ) - ( GAS_LEFTOVER :i128 ) - ( REFUND_COUNTER_FINAL :i128 ) - ( REFUND_EFFECTIVE :i128 ) + ( GAS_LEFTOVER :i64 ) + ( REFUND_COUNTER_FINAL :i64 ) + ( REFUND_EFFECTIVE :i64 ) ( EIP_4788 :binary@prove ) ( EIP_2935 :binary@prove ) ( NOOP :binary@prove ) diff --git a/txndata/prague/columns/common.lisp b/txndata/prague/columns/common.lisp index f2f0138a0..c0cdceff3 100644 --- a/txndata/prague/columns/common.lisp +++ b/txndata/prague/columns/common.lisp @@ -24,6 +24,6 @@ ;; heartbeat ( CT :i4 ) ( CT_MAX :i4 ) - ( GAS_CUMULATIVE :i128 ) + ( GAS_CUMULATIVE :i64 ) ) diff --git a/txndata/prague/columns/hub_view.lisp b/txndata/prague/columns/hub_view.lisp index b6e3b69bf..242b48681 100644 --- a/txndata/prague/columns/hub_view.lisp +++ b/txndata/prague/columns/hub_view.lisp @@ -40,9 +40,9 @@ ( CFI :i16 ) ( INIT_BALANCE :i128 ) ( STATUS_CODE :binary@prove ) - ( GAS_LEFTOVER :i128 ) - ( REFUND_COUNTER_FINAL :i128 ) - ( REFUND_EFFECTIVE :i128 ) + ( GAS_LEFTOVER :i64 ) + ( REFUND_COUNTER_FINAL :i64 ) + ( REFUND_EFFECTIVE :i64 ) ( EIP_4788 :binary@prove ) ( EIP_2935 :binary@prove ) ( NOOP :binary@prove ) diff --git a/txndata/shanghai/columns.lisp b/txndata/shanghai/columns.lisp index f4c626eab..491f6c841 100644 --- a/txndata/shanghai/columns.lisp +++ b/txndata/shanghai/columns.lisp @@ -30,10 +30,10 @@ (TYPE2 :binary@prove) (REQUIRES_EVM_EXECUTION :binary@prove) (COPY_TXCD :binary@prove) - (GAS_LEFTOVER :i128) - (REFUND_COUNTER :i128) - (REFUND_EFFECTIVE :i128) - (GAS_CUMULATIVE :i128) + (GAS_LEFTOVER :i64 ) + (REFUND_COUNTER :i64 ) + (REFUND_EFFECTIVE :i64 ) + (GAS_CUMULATIVE :i64 ) (STATUS_CODE :binary@prove) (PHASE_RLP_TXN :byte) (PHASE_RLP_TXNRCPT :byte) From bb6d6702345d69851945408d0242da7eefa4a945 Mon Sep 17 00:00:00 2001 From: Lorenzo Gentile Date: Thu, 4 Dec 2025 15:30:48 +0100 Subject: [PATCH 02/12] Change GAS_CUMULATIVE type from i64 to i32 Signed-off-by: Lorenzo Gentile --- txndata/cancun/columns/common.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/txndata/cancun/columns/common.lisp b/txndata/cancun/columns/common.lisp index c0cdceff3..afaa45403 100644 --- a/txndata/cancun/columns/common.lisp +++ b/txndata/cancun/columns/common.lisp @@ -24,6 +24,6 @@ ;; heartbeat ( CT :i4 ) ( CT_MAX :i4 ) - ( GAS_CUMULATIVE :i64 ) + ( GAS_CUMULATIVE :i32 ) ) From cfcb3916c543f304c057f6c38fa4eace39992a76 Mon Sep 17 00:00:00 2001 From: Lorenzo Gentile Date: Thu, 4 Dec 2025 15:32:27 +0100 Subject: [PATCH 03/12] Change data types for GAS_LEFTOVER and refund counters Signed-off-by: Lorenzo Gentile --- txndata/cancun/columns/hub_view.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/txndata/cancun/columns/hub_view.lisp b/txndata/cancun/columns/hub_view.lisp index 242b48681..23510ab79 100644 --- a/txndata/cancun/columns/hub_view.lisp +++ b/txndata/cancun/columns/hub_view.lisp @@ -40,9 +40,9 @@ ( CFI :i16 ) ( INIT_BALANCE :i128 ) ( STATUS_CODE :binary@prove ) - ( GAS_LEFTOVER :i64 ) - ( REFUND_COUNTER_FINAL :i64 ) - ( REFUND_EFFECTIVE :i64 ) + ( GAS_LEFTOVER :i32 ) + ( REFUND_COUNTER_FINAL :i25 ) + ( REFUND_EFFECTIVE :i25 ) ( EIP_4788 :binary@prove ) ( EIP_2935 :binary@prove ) ( NOOP :binary@prove ) From 48771017977e1947217a8c828ef02f804c2cf775 Mon Sep 17 00:00:00 2001 From: Lorenzo Gentile Date: Thu, 4 Dec 2025 15:33:16 +0100 Subject: [PATCH 04/12] Change data types for gas and refund fields Signed-off-by: Lorenzo Gentile --- txndata/london/columns.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/txndata/london/columns.lisp b/txndata/london/columns.lisp index e2056dd5d..18141de27 100644 --- a/txndata/london/columns.lisp +++ b/txndata/london/columns.lisp @@ -30,10 +30,10 @@ (TYPE2 :binary@prove) (REQUIRES_EVM_EXECUTION :binary@prove) (COPY_TXCD :binary@prove) - (GAS_LEFTOVER :i64 ) - (REFUND_COUNTER :i64 ) - (REFUND_EFFECTIVE :i64 ) - (GAS_CUMULATIVE :i64 ) + (GAS_LEFTOVER :i32 ) + (REFUND_COUNTER :i25 ) + (REFUND_EFFECTIVE :i25 ) + (GAS_CUMULATIVE :i32 ) (STATUS_CODE :binary@prove) (PHASE_RLP_TXN :byte) (PHASE_RLP_TXNRCPT :byte) From 2ce464446ac3bafadc7764def8944f4c77835308 Mon Sep 17 00:00:00 2001 From: Lorenzo Gentile Date: Thu, 4 Dec 2025 15:34:08 +0100 Subject: [PATCH 05/12] Change GAS_CUMULATIVE type from i64 to i32 Signed-off-by: Lorenzo Gentile --- txndata/osaka/columns/common.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/txndata/osaka/columns/common.lisp b/txndata/osaka/columns/common.lisp index 76f54e741..45c7281b2 100644 --- a/txndata/osaka/columns/common.lisp +++ b/txndata/osaka/columns/common.lisp @@ -24,6 +24,6 @@ ;; heartbeat ( CT :i5 ) ( CT_MAX :i5 ) - ( GAS_CUMULATIVE :i64 ) + ( GAS_CUMULATIVE :i32 ) ) From 8bc142a1913ae082802db986fed2c95a027dc185 Mon Sep 17 00:00:00 2001 From: Lorenzo Gentile Date: Thu, 4 Dec 2025 15:34:49 +0100 Subject: [PATCH 06/12] Change data types for GAS_LEFTOVER and refunds Signed-off-by: Lorenzo Gentile --- txndata/osaka/columns/hub_view.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/txndata/osaka/columns/hub_view.lisp b/txndata/osaka/columns/hub_view.lisp index 242b48681..23510ab79 100644 --- a/txndata/osaka/columns/hub_view.lisp +++ b/txndata/osaka/columns/hub_view.lisp @@ -40,9 +40,9 @@ ( CFI :i16 ) ( INIT_BALANCE :i128 ) ( STATUS_CODE :binary@prove ) - ( GAS_LEFTOVER :i64 ) - ( REFUND_COUNTER_FINAL :i64 ) - ( REFUND_EFFECTIVE :i64 ) + ( GAS_LEFTOVER :i32 ) + ( REFUND_COUNTER_FINAL :i25 ) + ( REFUND_EFFECTIVE :i25 ) ( EIP_4788 :binary@prove ) ( EIP_2935 :binary@prove ) ( NOOP :binary@prove ) From 1cdbdd802eadd62dc955b141f3dea358c74e795a Mon Sep 17 00:00:00 2001 From: Lorenzo Gentile Date: Thu, 4 Dec 2025 15:35:15 +0100 Subject: [PATCH 07/12] Change GAS_CUMULATIVE type from i64 to i32 Signed-off-by: Lorenzo Gentile --- txndata/prague/columns/common.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/txndata/prague/columns/common.lisp b/txndata/prague/columns/common.lisp index c0cdceff3..afaa45403 100644 --- a/txndata/prague/columns/common.lisp +++ b/txndata/prague/columns/common.lisp @@ -24,6 +24,6 @@ ;; heartbeat ( CT :i4 ) ( CT_MAX :i4 ) - ( GAS_CUMULATIVE :i64 ) + ( GAS_CUMULATIVE :i32 ) ) From c5a491153f9c8cea76ea8433ce9bba1d10fc31d2 Mon Sep 17 00:00:00 2001 From: Lorenzo Gentile Date: Thu, 4 Dec 2025 15:35:45 +0100 Subject: [PATCH 08/12] Change data types for GAS_LEFTOVER and refunds Signed-off-by: Lorenzo Gentile --- txndata/prague/columns/hub_view.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/txndata/prague/columns/hub_view.lisp b/txndata/prague/columns/hub_view.lisp index 242b48681..23510ab79 100644 --- a/txndata/prague/columns/hub_view.lisp +++ b/txndata/prague/columns/hub_view.lisp @@ -40,9 +40,9 @@ ( CFI :i16 ) ( INIT_BALANCE :i128 ) ( STATUS_CODE :binary@prove ) - ( GAS_LEFTOVER :i64 ) - ( REFUND_COUNTER_FINAL :i64 ) - ( REFUND_EFFECTIVE :i64 ) + ( GAS_LEFTOVER :i32 ) + ( REFUND_COUNTER_FINAL :i25 ) + ( REFUND_EFFECTIVE :i25 ) ( EIP_4788 :binary@prove ) ( EIP_2935 :binary@prove ) ( NOOP :binary@prove ) From 131719cf4a7befa625cb6cc2a8c98fe821501b0f Mon Sep 17 00:00:00 2001 From: Lorenzo Gentile Date: Thu, 4 Dec 2025 15:37:06 +0100 Subject: [PATCH 09/12] Change GAS_LEFTOVER, REFUND_COUNTER, REFUND_EFFECTIVE, GAS_CUMULATIVE types Signed-off-by: Lorenzo Gentile --- txndata/shanghai/columns.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/txndata/shanghai/columns.lisp b/txndata/shanghai/columns.lisp index 491f6c841..962527767 100644 --- a/txndata/shanghai/columns.lisp +++ b/txndata/shanghai/columns.lisp @@ -30,10 +30,10 @@ (TYPE2 :binary@prove) (REQUIRES_EVM_EXECUTION :binary@prove) (COPY_TXCD :binary@prove) - (GAS_LEFTOVER :i64 ) - (REFUND_COUNTER :i64 ) - (REFUND_EFFECTIVE :i64 ) - (GAS_CUMULATIVE :i64 ) + (GAS_LEFTOVER :i32 ) + (REFUND_COUNTER :i25 ) + (REFUND_EFFECTIVE :i25 ) + (GAS_CUMULATIVE :i32 ) (STATUS_CODE :binary@prove) (PHASE_RLP_TXN :byte) (PHASE_RLP_TXNRCPT :byte) From d30148506535ff61095e88cd57ea2c7fc727c246 Mon Sep 17 00:00:00 2001 From: Lorenzo Gentile Date: Thu, 4 Dec 2025 15:42:07 +0100 Subject: [PATCH 10/12] addressed review comments --- hub/cancun/columns/transaction.lisp | 6 +++--- hub/london/columns/transaction.lisp | 6 +++--- hub/osaka/columns/transaction.lisp | 6 +++--- hub/prague/columns/transaction.lisp | 6 +++--- hub/shanghai/columns/transaction.lisp | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/hub/cancun/columns/transaction.lisp b/hub/cancun/columns/transaction.lisp index 26ad7c997..004aad9b4 100644 --- a/hub/cancun/columns/transaction.lisp +++ b/hub/cancun/columns/transaction.lisp @@ -35,9 +35,9 @@ ;; end of transaction predictions ( STATUS_CODE :binary ) - ( GAS_LEFTOVER :i64 ) - ( REFUND_COUNTER_INFINITY :i64 ) - ( REFUND_EFFECTIVE :i64 ) + ( GAS_LEFTOVER :i32 ) + ( REFUND_COUNTER_INFINITY :i25 ) + ( REFUND_EFFECTIVE :i25 ) ;; coinbase related ( COINBASE_ADDRESS_HI :i32 ) diff --git a/hub/london/columns/transaction.lisp b/hub/london/columns/transaction.lisp index 9ad1605e4..9d325e33c 100644 --- a/hub/london/columns/transaction.lisp +++ b/hub/london/columns/transaction.lisp @@ -35,9 +35,9 @@ ;; end of transaction predictions ( STATUS_CODE :binary) - ( GAS_LEFTOVER :i64 ) - ( REFUND_COUNTER_INFINITY :i64 ) - ( REFUND_EFFECTIVE :i64 ) + ( GAS_LEFTOVER :i32 ) + ( REFUND_COUNTER_INFINITY :i25 ) + ( REFUND_EFFECTIVE :i25 ) ;; coinbase related ( COINBASE_ADDRESS_HI :i32 ) diff --git a/hub/osaka/columns/transaction.lisp b/hub/osaka/columns/transaction.lisp index d62ef3cb0..63d18f02c 100644 --- a/hub/osaka/columns/transaction.lisp +++ b/hub/osaka/columns/transaction.lisp @@ -35,9 +35,9 @@ ;; end of transaction predictions ( STATUS_CODE :binary ) - ( GAS_LEFTOVER :i64 ) - ( REFUND_COUNTER_INFINITY :i64 ) - ( REFUND_EFFECTIVE :i64 ) + ( GAS_LEFTOVER :i32 ) + ( REFUND_COUNTER_INFINITY :i25 ) + ( REFUND_EFFECTIVE :i25 ) ;; coinbase related ( COINBASE_ADDRESS_HI :i32 ) diff --git a/hub/prague/columns/transaction.lisp b/hub/prague/columns/transaction.lisp index d62ef3cb0..63d18f02c 100644 --- a/hub/prague/columns/transaction.lisp +++ b/hub/prague/columns/transaction.lisp @@ -35,9 +35,9 @@ ;; end of transaction predictions ( STATUS_CODE :binary ) - ( GAS_LEFTOVER :i64 ) - ( REFUND_COUNTER_INFINITY :i64 ) - ( REFUND_EFFECTIVE :i64 ) + ( GAS_LEFTOVER :i32 ) + ( REFUND_COUNTER_INFINITY :i25 ) + ( REFUND_EFFECTIVE :i25 ) ;; coinbase related ( COINBASE_ADDRESS_HI :i32 ) diff --git a/hub/shanghai/columns/transaction.lisp b/hub/shanghai/columns/transaction.lisp index 9ad1605e4..9d325e33c 100644 --- a/hub/shanghai/columns/transaction.lisp +++ b/hub/shanghai/columns/transaction.lisp @@ -35,9 +35,9 @@ ;; end of transaction predictions ( STATUS_CODE :binary) - ( GAS_LEFTOVER :i64 ) - ( REFUND_COUNTER_INFINITY :i64 ) - ( REFUND_EFFECTIVE :i64 ) + ( GAS_LEFTOVER :i32 ) + ( REFUND_COUNTER_INFINITY :i25 ) + ( REFUND_EFFECTIVE :i25 ) ;; coinbase related ( COINBASE_ADDRESS_HI :i32 ) From d8dd94c27aca3862e88e5cb55924f7e75f604678 Mon Sep 17 00:00:00 2001 From: Lorenzo Gentile Date: Thu, 4 Dec 2025 15:43:22 +0100 Subject: [PATCH 11/12] reduced sizes of gas zkASM columns --- gas/gas.zkasm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gas/gas.zkasm b/gas/gas.zkasm index 0ff9b485a..fd7d3d8a1 100644 --- a/gas/gas.zkasm +++ b/gas/gas.zkasm @@ -4,8 +4,8 @@ ;; "Out Of Gas Exception". When OOGX==1, it means the corresponding ;; instruction generated an out-of-gas exception (rather than some ;; other exception kind). -pub fn gas(GAS_COST u64, GAS_ACTUAL u64, XAHOY u1, OOGX u1) { - var tmp u64 +pub fn gas(GAS_COST u32, GAS_ACTUAL u32, XAHOY u1, OOGX u1) { + var tmp u32 var b u1 ;; b, tmp = GAS_ACTUAL - GAS_COST From 189273f00777140f3396749adf1e98129a92b943 Mon Sep 17 00:00:00 2001 From: Lorenzo Gentile Date: Thu, 4 Dec 2025 15:48:56 +0100 Subject: [PATCH 12/12] reduced the size of more gas columns --- hub/cancun/columns/shared.lisp | 4 ++-- hub/london/columns/shared.lisp | 4 ++-- hub/osaka/columns/shared.lisp | 4 ++-- hub/prague/columns/shared.lisp | 4 ++-- hub/shanghai/columns/shared.lisp | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/hub/cancun/columns/shared.lisp b/hub/cancun/columns/shared.lisp index 0efc78db5..b66b5708a 100644 --- a/hub/cancun/columns/shared.lisp +++ b/hub/cancun/columns/shared.lisp @@ -64,8 +64,8 @@ ;; gas columns ( GAS_EXPECTED :i64 ) - ( GAS_ACTUAL :i64 ) - ( GAS_COST :i64 ) + ( GAS_ACTUAL :i32 ) + ( GAS_COST :i32 ) ( GAS_NEXT :i64 ) ( REFUND_COUNTER :i32 ) ( REFUND_COUNTER_NEW :i32 ) diff --git a/hub/london/columns/shared.lisp b/hub/london/columns/shared.lisp index aad7677df..bb7c57e26 100644 --- a/hub/london/columns/shared.lisp +++ b/hub/london/columns/shared.lisp @@ -51,8 +51,8 @@ ;; gas columns ( GAS_EXPECTED :i64 ) - ( GAS_ACTUAL :i64 ) - ( GAS_COST :i64 ) + ( GAS_ACTUAL :i32 ) + ( GAS_COST :i32 ) ( GAS_NEXT :i64 ) ( REFUND_COUNTER :i32 ) ( REFUND_COUNTER_NEW :i32 ) diff --git a/hub/osaka/columns/shared.lisp b/hub/osaka/columns/shared.lisp index 0efc78db5..b66b5708a 100644 --- a/hub/osaka/columns/shared.lisp +++ b/hub/osaka/columns/shared.lisp @@ -64,8 +64,8 @@ ;; gas columns ( GAS_EXPECTED :i64 ) - ( GAS_ACTUAL :i64 ) - ( GAS_COST :i64 ) + ( GAS_ACTUAL :i32 ) + ( GAS_COST :i32 ) ( GAS_NEXT :i64 ) ( REFUND_COUNTER :i32 ) ( REFUND_COUNTER_NEW :i32 ) diff --git a/hub/prague/columns/shared.lisp b/hub/prague/columns/shared.lisp index 0efc78db5..b66b5708a 100644 --- a/hub/prague/columns/shared.lisp +++ b/hub/prague/columns/shared.lisp @@ -64,8 +64,8 @@ ;; gas columns ( GAS_EXPECTED :i64 ) - ( GAS_ACTUAL :i64 ) - ( GAS_COST :i64 ) + ( GAS_ACTUAL :i32 ) + ( GAS_COST :i32 ) ( GAS_NEXT :i64 ) ( REFUND_COUNTER :i32 ) ( REFUND_COUNTER_NEW :i32 ) diff --git a/hub/shanghai/columns/shared.lisp b/hub/shanghai/columns/shared.lisp index aad7677df..bb7c57e26 100644 --- a/hub/shanghai/columns/shared.lisp +++ b/hub/shanghai/columns/shared.lisp @@ -51,8 +51,8 @@ ;; gas columns ( GAS_EXPECTED :i64 ) - ( GAS_ACTUAL :i64 ) - ( GAS_COST :i64 ) + ( GAS_ACTUAL :i32 ) + ( GAS_COST :i32 ) ( GAS_NEXT :i64 ) ( REFUND_COUNTER :i32 ) ( REFUND_COUNTER_NEW :i32 )