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 @@ -9,7 +9,7 @@ Status legend: `[ ]` pending, `[~]` in progress, `[x]` complete
- [x] `src/ethereum/forks/*/vm/instructions/arithmetic.py`, `comparison.py`, `bitwise.py` (~72 files)
- [x] `src/ethereum/forks/*/vm/instructions/block.py`, `environment.py`, `control_flow.py` (~72 files)
- [x] `src/ethereum/forks/*/vm/instructions/keccak.py`, `log.py`, `memory.py`, `stack.py` (~96 files)
- [ ] `src/ethereum/forks/*/vm/instructions/storage.py`, `system.py`, `__init__.py` (~72 files)
- [x] `src/ethereum/forks/*/vm/instructions/storage.py`, `system.py`, `__init__.py` (~72 files)

## src/ethereum/forks - VM Core

Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/amsterdam/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/arrow_glacier/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/berlin/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/bpo1/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/bpo2/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/bpo3/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/bpo4/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/bpo5/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/cancun/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/constantinople/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/gray_glacier/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/istanbul/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/london/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/muir_glacier/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/osaka/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/paris/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/prague/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/shanghai/vm/instructions/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ def create2(evm: Evm) -> None:
"""
Creates a new account with associated code.

It's similar to CREATE opcode except that the address of new account
depends on the init_code instead of the nonce of sender.
It's similar to the CREATE opcode except that the address of the new
account depends on the init_code instead of the nonce of sender.

Parameters
----------
Expand Down
Loading