Skip to content

Commit fab59d2

Browse files
authored
fix: grammar corrections and minor formatting cleanup (#1374)
* Update cancun.md * Update fork.py * Update state_db.py * Update fork.py * Update state_db.py
1 parent 1e1a4be commit fab59d2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

network-upgrades/mainnet-upgrades/cancun.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Execution layer changes included in the Network Upgrade.
55

66
* [EIP-1153: Transient storage opcodes](https://eips.ethereum.org/EIPS/eip-1153)
7-
* [EIP-4788: Beacon block root in the EVM ](https://eips.ethereum.org/EIPS/eip-4788)
7+
* [EIP-4788: Beacon block root in the EVM](https://eips.ethereum.org/EIPS/eip-4788)
88
* [EIP-4844: Shard Blob Transactions](https://eips.ethereum.org/EIPS/eip-4844)
99
* [EIP-5656: MCOPY - Memory copying instruction](https://eips.ethereum.org/EIPS/eip-5656)
1010
* [EIP-6780: SELFDESTRUCT only in same transaction](https://eips.ethereum.org/EIPS/eip-6780)

src/ethereum_optimized/fork.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
Introduction
1010
------------
1111
12-
This module contains optimized POW functions can be monkey patched into the
13-
`fork` module of a fork.
12+
This module contains optimized POW functions that can be monkey patched into
13+
the `fork` module of a fork.
1414
"""
1515
from importlib import import_module
1616
from typing import Any, Dict, cast

src/ethereum_optimized/state_db.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
Introduction
1010
------------
1111
12-
This module contains functions can be monkey patched into the fork's `state`
13-
module to use an optimized database backed state.
12+
This module contains functions that can be monkey patched into the fork's
13+
`state` module to use an optimized database backed state.
1414
"""
1515
import logging
1616
from collections import defaultdict

0 commit comments

Comments
 (0)