-
Notifications
You must be signed in to change notification settings - Fork 251
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
EIP-7623: Apply correction after gas refund #1073
Comments
From @chfast on Discord:
|
From @jochem-brouwer on Discord:
|
I applied the formula wrong, please disregard the comment 😊 👍 |
I think this is correct: gas_used -= refund
gas_used = max(gas_used, floor_cost) EthJS currently has this though: gas_used = max(gas_used, floor_cost)
gas_used -= refund |
Solved with #1076 |
Originally posted by @chfast in #966 (comment)
The text was updated successfully, but these errors were encountered: