Skip to content

Commit 86bf585

Browse files
InventiveCoderpacrob
authored andcommitted
chore: fix some typos
Signed-off-by: InventiveCoder <[email protected]>
1 parent e0c2145 commit 86bf585

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

docs/cookbook/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Creating a chain with custom state
5454
----------------------------------
5555

5656
While the previous recipe demos how to create a chain from an existing genesis header, we can
57-
also create chains simply by specifing various genesis parameter as well as an optional genesis
57+
also create chains simply by specifying various genesis parameter as well as an optional genesis
5858
state.
5959

6060
.. doctest::

eth/abc.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2814,7 +2814,7 @@ def make_state_root(self) -> Hash32:
28142814
This is an expensive operation, so should be called as little as possible.
28152815
For example, pre-Byzantium, this is called after every transaction, because we
28162816
need the state root in each receipt. Byzantium+, we only need state roots at
2817-
the end of the block, so we *only* call it right before persistance.
2817+
the end of the block, so we *only* call it right before persistence.
28182818
28192819
:return: the new state root
28202820
"""
@@ -4360,7 +4360,7 @@ def get_canonical_transaction_index(
43604360
block the given transaction can be found in and at what index in the
43614361
block transactions.
43624362
4363-
Raise ``TransactionNotFound`` if the transaction does not exist in the canoncial
4363+
Raise ``TransactionNotFound`` if the transaction does not exist in the canonical
43644364
chain.
43654365
"""
43664366

eth/chains/tester/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class BaseMainnetTesterChain(Chain):
143143
class MainnetTesterChain(BaseMainnetTesterChain):
144144
"""
145145
This class is intended to be used for in-memory test chains. It
146-
explicitely bypasses the proof of work validation to allow for instant
146+
explicitly bypasses the proof of work validation to allow for instant
147147
block mining.
148148
149149
It exposes one additional API `configure_forks` to allow for in-flight

eth/db/atomic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def _commit(self) -> None:
112112
def _exists(self, key: bytes) -> bool:
113113
if self._track_diff is None:
114114
raise ValidationError(
115-
"Cannot test data existance from a write batch, out of context"
115+
"Cannot test data existence from a write batch, out of context"
116116
)
117117

118118
try:

eth/db/journal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ class JournalDB(BaseDB):
336336
337337
Discarding a checkpoint throws away all changes that happened since that
338338
checkpoint.
339-
Commiting a checkpoint simply removes the option of reverting back to it
339+
Committing a checkpoint simply removes the option of reverting back to it
340340
later.
341341
342342
Nothing is written to the underlying db until `persist()` is called.

eth/db/slow_journal.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -293,9 +293,9 @@ class JournalDB(BaseDB):
293293
changeset and assigns an id to it. The journal then keeps track of all changes
294294
that go into this changeset.
295295
296-
Discarding a changeset simply throws it away inculding all subsequent changesets
297-
that may have followed. Commiting a changeset merges the given changeset and all
298-
subsequent changesets into the previous changeset giving precidence to later
296+
Discarding a changeset simply throws it away including all subsequent changesets
297+
that may have followed. Committing a changeset merges the given changeset and all
298+
subsequent changesets into the previous changeset giving precedence to later
299299
changesets in case of conflicting keys.
300300
301301
Nothing is written to the underlying db until `persist()` is called.
@@ -410,7 +410,7 @@ def discard(self, changeset_id: uuid.UUID) -> None:
410410
def commit(self, changeset_id: uuid.UUID) -> None:
411411
"""
412412
Commits a given changeset. This merges the given changeset and all
413-
subsequent changesets into the previous changeset giving precidence
413+
subsequent changesets into the previous changeset giving precedence
414414
to later changesets in case of any conflicting keys.
415415
"""
416416
self._validate_changeset(changeset_id)

0 commit comments

Comments
 (0)