Skip to content

Commit

Permalink
fix(docs): minor docstring fixes in objects module
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeshultz committed Aug 13, 2023
1 parent 535706a commit 884a25b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ledgereth/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ def from_rawtx(cls, rawtx: bytes) -> SerializableTransaction:
transaction
:param rawtx: (:class:`bytes`) - The decoded raw transaction ``bytes``
to encode into a :class`ledgereth.objects.SerializableTransaction`
:return: Instantiated :class`ledgereth.objects.SerializableTransaction`
to encode into a :class:`ledgereth.objects.SerializableTransaction`
:return: Instantiated :class:`ledgereth.objects.SerializableTransaction`
"""

def to_dict(self) -> Dict[str, Any]:
Expand Down Expand Up @@ -815,7 +815,7 @@ def raw_transaction(self):
Encoded signed TX format spec:
..code::
.. code::
0x02 || rlp([chain_id, nonce, max_priority_fee_per_gas, max_fee_per_gas, gas_limit, destination, amount, data, access_list, signature_y_parity, signature_r, signature_s])
Expand Down

0 comments on commit 884a25b

Please sign in to comment.