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

- [x] `src/ethereum/forks/*/vm/interpreter.py`, `runtime.py` (~48 files)
- [ ] `src/ethereum/forks/*/vm/gas.py`, `memory.py`, `stack.py`, `exceptions.py` (~96 files)
- [x] `src/ethereum/forks/*/vm/gas.py`, `memory.py`, `stack.py`, `exceptions.py` (~96 files)
- [x] `src/ethereum/forks/*/vm/__init__.py` (~24 files)

## src/ethereum/forks - Precompiled Contracts
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/amsterdam/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down Expand Up @@ -288,7 +288,7 @@ def init_code_cost(init_code_length: Uint) -> Uint:

def calculate_excess_blob_gas(parent_header: Header) -> U64:
"""
Calculated the excess blob gas for the current block based
Calculates the excess blob gas for the current block based
on the gas used in the parent block.

Parameters
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/arrow_glacier/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/berlin/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/bpo1/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down Expand Up @@ -288,7 +288,7 @@ def init_code_cost(init_code_length: Uint) -> Uint:

def calculate_excess_blob_gas(parent_header: Header) -> U64:
"""
Calculated the excess blob gas for the current block based
Calculates the excess blob gas for the current block based
on the gas used in the parent block.

Parameters
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/bpo2/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down Expand Up @@ -288,7 +288,7 @@ def init_code_cost(init_code_length: Uint) -> Uint:

def calculate_excess_blob_gas(parent_header: Header) -> U64:
"""
Calculated the excess blob gas for the current block based
Calculates the excess blob gas for the current block based
on the gas used in the parent block.

Parameters
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/bpo3/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down Expand Up @@ -288,7 +288,7 @@ def init_code_cost(init_code_length: Uint) -> Uint:

def calculate_excess_blob_gas(parent_header: Header) -> U64:
"""
Calculated the excess blob gas for the current block based
Calculates the excess blob gas for the current block based
on the gas used in the parent block.

Parameters
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/bpo4/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down Expand Up @@ -288,7 +288,7 @@ def init_code_cost(init_code_length: Uint) -> Uint:

def calculate_excess_blob_gas(parent_header: Header) -> U64:
"""
Calculated the excess blob gas for the current block based
Calculates the excess blob gas for the current block based
on the gas used in the parent block.

Parameters
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/bpo5/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down Expand Up @@ -288,7 +288,7 @@ def init_code_cost(init_code_length: Uint) -> Uint:

def calculate_excess_blob_gas(parent_header: Header) -> U64:
"""
Calculated the excess blob gas for the current block based
Calculates the excess blob gas for the current block based
on the gas used in the parent block.

Parameters
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/byzantium/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/cancun/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down Expand Up @@ -277,7 +277,7 @@ def init_code_cost(init_code_length: Uint) -> Uint:

def calculate_excess_blob_gas(parent_header: Header) -> U64:
"""
Calculated the excess blob gas for the current block based
Calculates the excess blob gas for the current block based
on the gas used in the parent block.

Parameters
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/constantinople/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/gray_glacier/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/istanbul/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/london/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/muir_glacier/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/osaka/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down Expand Up @@ -288,7 +288,7 @@ def init_code_cost(init_code_length: Uint) -> Uint:

def calculate_excess_blob_gas(parent_header: Header) -> U64:
"""
Calculated the excess blob gas for the current block based
Calculates the excess blob gas for the current block based
on the gas used in the parent block.

Parameters
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/paris/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/forks/prague/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down Expand Up @@ -284,7 +284,7 @@ def init_code_cost(init_code_length: Uint) -> Uint:

def calculate_excess_blob_gas(parent_header: Header) -> U64:
"""
Calculated the excess blob gas for the current block based
Calculates the excess blob gas for the current block based
on the gas used in the parent block.

Parameters
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/shanghai/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/spurious_dragon/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/forks/tangerine_whistle/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def calculate_message_call_gas(
account inside a message call.
call_stipend :
The amount of stipend provided to a message call to execute code while
transferring value(ETH).
transferring value (ETH).

Returns
-------
Expand Down
Loading