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 @@ -42,7 +42,7 @@ Status legend: `[ ]` pending, `[~]` in progress, `[x]` complete

## src/ethereum (non-forks)

- [ ] `src/ethereum/*.py`, `src/ethereum/crypto/*.py`, `src/ethereum/utils/*.py` (~15 files)
- [x] `src/ethereum/*.py`, `src/ethereum/crypto/*.py`, `src/ethereum/utils/*.py` (~15 files)

## src/ethereum_spec_tools

Expand Down
4 changes: 2 additions & 2 deletions src/ethereum/ethash.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,8 @@ def hashimoto_light(
dataset_size: Uint,
) -> Tuple[Bytes, Hash32]:
"""
Run the [`hashimoto`] algorithm by generating dataset item using the cache
instead of loading the full dataset into main memory.
Run the [`hashimoto`] algorithm by generating a dataset item using the
cache instead of loading the full dataset into main memory.

#### Parameters

Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class InvalidBlock(EthereumException):

class StateWithEmptyAccount(EthereumException):
"""
Thrown when the state has empty account.
Thrown when the state has an empty account.
"""


Expand Down
Loading