-
Notifications
You must be signed in to change notification settings - Fork 21
Reduced size of GAS_CUMULATIVE, GAS_LEFTOVER, REFUND_COUNTER_FINAL, REFUND_COUNTER, REFUND_EFFECTIVE
#841
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Reduced size of GAS_CUMULATIVE, GAS_LEFTOVER, REFUND_COUNTER_FINAL, REFUND_COUNTER, REFUND_EFFECTIVE
#841
Changes from all commits
2108ce8
d1fc2b3
bb6d670
cfcb391
4877101
2ce4644
8bc142a
1cdbdd8
c5a4911
131719c
d301485
d8dd94c
189273f
e84d451
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 ) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Refund fields use insufficient bit width for valuesThe Additional Locations (2)There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Refund columns too small for pre-Osaka forksThe Additional Locations (2) |
||
|
|
||
| ;; coinbase related | ||
| ( COINBASE_ADDRESS_HI :i32 ) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,6 +24,6 @@ | |
| ;; heartbeat | ||
| ( CT :i4 ) | ||
| ( CT_MAX :i4 ) | ||
| ( GAS_CUMULATIVE :i128 ) | ||
| ( GAS_CUMULATIVE :i32 ) | ||
| ) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 :i32 ) | ||
| ( REFUND_COUNTER_FINAL :i25 ) | ||
| ( REFUND_EFFECTIVE :i25 ) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Refund field type too small for large transactionsThe Additional Locations (2) |
||
| ( EIP_4788 :binary@prove ) | ||
| ( EIP_2935 :binary@prove ) | ||
| ( NOOP :binary@prove ) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,6 +24,6 @@ | |
| ;; heartbeat | ||
| ( CT :i5 ) | ||
| ( CT_MAX :i5 ) | ||
| ( GAS_CUMULATIVE :i128 ) | ||
| ( GAS_CUMULATIVE :i32 ) | ||
| ) | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,6 +24,6 @@ | |
| ;; heartbeat | ||
| ( CT :i4 ) | ||
| ( CT_MAX :i4 ) | ||
| ( GAS_CUMULATIVE :i128 ) | ||
| ( GAS_CUMULATIVE :i32 ) | ||
| ) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.