Skip to content

Commit

Permalink
fix bug in computation of miner balance after tx if miner == sender (#…
Browse files Browse the repository at this point in the history
…2306)

* fix bug in computation of miner balance after tx if miner == sender

* remove failing tests

* Set Version: 1.0.459

* Set Version: 1.0.460

* Set Version: 1.0.461

---------

Co-authored-by: devops <[email protected]>
Co-authored-by: Andrei Văcaru <[email protected]>
Co-authored-by: rv-jenkins <[email protected]>
  • Loading branch information
4 people authored Feb 22, 2024
1 parent edbcb5e commit f0a032b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion kevm-pyk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kevm-pyk"
version = "1.0.460"
version = "1.0.461"
description = ""
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion kevm-pyk/src/kevm_pyk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from typing import Final


VERSION: Final = '1.0.460'
VERSION: Final = '1.0.461'
2 changes: 1 addition & 1 deletion kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm.md
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ After executing a transaction, it's necessary to have the effect of the substate
<refund> 0 </refund>
<account>
<acctID> ACCT </acctID>
<balance> BAL => BAL +Int GLIMIT *Int (GPRICE -Int BFEE) </balance>
<balance> BAL => BAL +Int GLIMIT *Int GPRICE -Int (GLIMIT -Int GAVAIL) *Int BFEE </balance>
...
</account>
<txPending> ListItem(MsgId:Int) REST => REST </txPending>
Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.460
1.0.461
2 changes: 0 additions & 2 deletions tests/failing.llvm
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
tests/ethereum-tests/BlockchainTests/GeneralStateTests/stCreate2/CREATE2_HighNonceDelegatecall.json
tests/ethereum-tests/BlockchainTests/GeneralStateTests/stPreCompiledContracts/delegatecall09Undefined.json
tests/ethereum-tests/BlockchainTests/GeneralStateTests/stCallCodes/touchAndGo.json

0 comments on commit f0a032b

Please sign in to comment.