Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion txndata/cancun/columns/common.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
;; heartbeat
( CT :i4 )
( CT_MAX :i4 )
( GAS_CUMULATIVE :i128 )
( GAS_CUMULATIVE :i64 )
)

6 changes: 3 additions & 3 deletions txndata/cancun/columns/hub_view.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

refund is cap by tx ax gas, so i25

( EIP_4788 :binary@prove )
( EIP_2935 :binary@prove )
( NOOP :binary@prove )
Expand Down
8 changes: 4 additions & 4 deletions txndata/london/columns.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion txndata/osaka/columns/common.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
;; heartbeat
( CT :i5 )
( CT_MAX :i5 )
( GAS_CUMULATIVE :i128 )
( GAS_CUMULATIVE :i64 )
)

6 changes: 3 additions & 3 deletions txndata/osaka/columns/hub_view.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand Down
2 changes: 1 addition & 1 deletion txndata/prague/columns/common.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
;; heartbeat
( CT :i4 )
( CT_MAX :i4 )
( GAS_CUMULATIVE :i128 )
( GAS_CUMULATIVE :i64 )
)

6 changes: 3 additions & 3 deletions txndata/prague/columns/hub_view.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand Down
8 changes: 4 additions & 4 deletions txndata/shanghai/columns.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading