Skip to content
Merged
Changes from all 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
7 changes: 4 additions & 3 deletions kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm.md
Original file line number Diff line number Diff line change
Expand Up @@ -1080,13 +1080,14 @@ These are just used by the other operators for shuffling local execution state a
syntax InternalOp ::= "#transferFunds" Int Int Int
| "#transferFundsToNonExistent" Int Int Int
// ---------------------------------------------------------------
rule <k> #transferFunds ACCT ACCT VALUE => .K ... </k>
rule <k> #transferFunds ACCTFROM ACCTTO VALUE => .K ... </k>
<account>
<acctID> ACCT </acctID>
<acctID> ACCTFROM </acctID>
<balance> ORIGFROM </balance>
...
</account>
requires VALUE <=Int ORIGFROM
requires ACCTFROM ==K ACCTTO
andBool VALUE <=Int ORIGFROM

rule <k> #transferFunds ACCTFROM ACCTTO VALUE => .K ... </k>
<account>
Expand Down
Loading