Skip to content
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-7610: Revert creation in case of non-empty storage #2686

Merged
merged 6 commits into from
Jan 23, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Optimizing storage requirement to create an existing acccount
  • Loading branch information
Robertorosmaninho committed Jan 23, 2025
commit 983a41a1fdcd05fb317d90433e9597bf138de315
4 changes: 2 additions & 2 deletions kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm.md
Original file line number Diff line number Diff line change
@@ -817,11 +817,11 @@ These are just used by the other operators for shuffling local execution state a
<acctID> ACCT </acctID>
<code> CODE </code>
<nonce> 0 </nonce>
<storage> STORAGE </storage>
<storage> .Map </storage>
<origStorage> _ => .Map </origStorage>
...
</account>
requires lengthBytes(CODE) ==Int 0 andBool STORAGE ==K .Map
requires lengthBytes(CODE) ==Int 0
```

- `#transferFunds` moves money from one account into another, creating the destination account if it doesn't exist.
Loading