Skip to content

Commit

Permalink
Change Muir Glacier's transaction nonce to U64
Browse files Browse the repository at this point in the history
  • Loading branch information
richardgreg committed Aug 29, 2024
1 parent 22fd07f commit 7b43037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ethereum/muir_glacier/transactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from dataclasses import dataclass
from typing import Union

from ..base_types import U256, Bytes, Bytes0, Uint, slotted_freezable
from ..base_types import U64, U256, Bytes, Bytes0, Uint, slotted_freezable
from .fork_types import Address

TX_BASE_COST = 21000
Expand All @@ -22,7 +22,7 @@ class Transaction:
Atomic operation performed on the block chain.
"""

nonce: U256
nonce: U64
gas_price: Uint
gas: Uint
to: Union[Bytes0, Address]
Expand Down

0 comments on commit 7b43037

Please sign in to comment.