Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion repo_subpaths_for_grammar_check.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ Status legend: `[ ]` pending, `[~]` in progress, `[x]` complete
- [x] `tests/shanghai/**/*.py` (~19 files)
- [x] `tests/byzantium/**/*.py` (~11 files)
- [x] `tests/istanbul/**/*.py`, `berlin/**/*.py` (~18 files)
- [ ] `tests/constantinople/**/*.py`, `amsterdam/**/*.py` (~16 files)
- [x] `tests/constantinople/**/*.py`, `amsterdam/**/*.py` (~16 files)
- [ ] `tests/london/**/*.py`, `homestead/**/*.py`, `paris/**/*.py` (~17 files)
- [ ] `tests/*.py`, `tests/common/**/*.py`, `tests/evm_tools/**/*.py` (~5 files)
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def test_bal_self_destruct(
}

# If the account was self-destructed in the same transaction,
# we expect the account to non-existent and its balance to be 0.
# we expect the account to be non-existent and its balance to be 0.
if self_destruct_in_same_tx:
post.update(
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def test_bal_7702_delegation_update(
oracle1 = pre.deploy_contract(code=Op.STOP)
oracle2 = pre.deploy_contract(code=Op.STOP)

## Perhaps create pre existing delegation,
## Perhaps create a pre-existing delegation,
## see `test_bal_7702_delegated_storage_access` since
## `test_bal_7702_delegation_create` already tests creation
tx_create = Transaction(
Expand Down Expand Up @@ -268,7 +268,7 @@ def test_bal_7702_delegation_clear(
oracle = pre.deploy_contract(code=Op.STOP)
abyss = Spec7702.RESET_DELEGATION_ADDRESS

## Perhaps create pre existing delegation,
## Perhaps create a pre-existing delegation,
## see `test_bal_7702_delegated_storage_access` since
## `test_bal_7702_delegation_create` already tests creation
tx_create = Transaction(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
"""
Return data management around create2 Port
call_outsize_then_create2_successful_then_returndatasizeFiller.json test Port
call_then_create2_successful_then_returndatasizeFiller.json test.
Test CREATE2 return data memory management.

Ported tests for return data management around CREATE2:
- call_outsize_then_create2_successful_then_returndatasizeFiller.json
- call_then_create2_successful_then_returndatasizeFiller.json
"""

import pytest
Expand Down
4 changes: 2 additions & 2 deletions tests/constantinople/eip145_bitwise_shift/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ class Spec:
https://eips.ethereum.org/EIPS/eip-145.
"""

# Below are GPT o4-mini-high implementation of shift functions It can
# contain bugs, treat it with caution and refer to EVM implementations
# Below is a GPT o4-mini-high implementation of shift functions. It can
# contain bugs, treat it with caution and refer to EVM implementations.
@staticmethod
def sar(shift: int, value: int) -> int:
"""
Expand Down
Loading