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 @@ -7,7 +7,7 @@ Status legend: `[ ]` pending, `[~]` in progress, `[x]` complete
## src/ethereum/forks - VM Instructions

- [x] `src/ethereum/forks/*/vm/instructions/arithmetic.py`, `comparison.py`, `bitwise.py` (~72 files)
- [ ] `src/ethereum/forks/*/vm/instructions/block.py`, `environment.py`, `control_flow.py` (~72 files)
- [x] `src/ethereum/forks/*/vm/instructions/block.py`, `environment.py`, `control_flow.py` (~72 files)
- [ ] `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)

Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/amsterdam/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/arrow_glacier/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/berlin/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/berlin/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/bpo1/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/bpo1/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/bpo2/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/bpo2/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/bpo3/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/bpo3/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/bpo4/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/bpo4/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/bpo5/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/bpo5/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/byzantium/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/cancun/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/cancun/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/constantinople/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/dao_fork/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/frontier/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/gray_glacier/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/homestead/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/istanbul/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/istanbul/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/london/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/london/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/muir_glacier/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/osaka/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/osaka/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/paris/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/paris/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/prague/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/prague/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/shanghai/vm/instructions/block.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/shanghai/vm/instructions/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def returndatasize(evm: Evm) -> None:

def returndatacopy(evm: Evm) -> None:
"""
Copies data from the return data buffer code to memory.
Copies data from the return data buffer to memory.

Parameters
----------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def coinbase(evm: Evm) -> None:
def timestamp(evm: Evm) -> None:
"""
Push the current block's timestamp onto the stack. Here the timestamp
being referred is actually the unix timestamp in seconds.
being referred to is actually the unix timestamp in seconds.

Here the current block refers to the block in which the currently
executing transaction/call resides.
Expand Down
Loading