You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
This issue arises from the discussion in #337
When we have an empty block the value of CumulativeGasCost is currently not constrained. However, we should ensure its value is 0 in this case. @ed255 proposed the following solution:
Adding a new entry to the block table: GasUsed
In EndTx, if block is empty, lookup to block_table with (GasUsed, 0). If block is not empty, lookup to block_table with (GasUsed, cumulative_gas)
The text was updated successfully, but these errors were encountered:
This issue arises from the discussion in #337
When we have an empty block the value of
CumulativeGasCost
is currently not constrained. However, we should ensure its value is0
in this case. @ed255 proposed the following solution:GasUsed
(GasUsed, 0)
. If block is not empty, lookup to block_table with(GasUsed, cumulative_gas)
The text was updated successfully, but these errors were encountered: