Skip to content

Commit 449c1c9

Browse files
committed
update specific osaka refs
1 parent 01e6fcb commit 449c1c9

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

setup.cfg

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,12 @@ packages =
116116
ethereum/prague/vm/instructions
117117
ethereum/prague/vm/precompiled_contracts
118118
ethereum/prague/vm/precompiled_contracts/bls12_381
119+
ethereum/osaka
120+
ethereum/osaka/utils
121+
ethereum/osaka/vm
122+
ethereum/osaka/vm/instructions
123+
ethereum/osaka/vm/precompiled_contracts
124+
ethereum/osaka/vm/precompiled_contracts/bls12_381
119125

120126

121127
package_dir =

src/ethereum/osaka/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
The Osaka fork.
33
"""
44

5-
from ethereum.fork_criteria import ByTimestamp
5+
from ethereum.fork_criteria import Unscheduled
66

7-
FORK_CRITERIA = ByTimestamp(1746612311)
7+
FORK_CRITERIA = Unscheduled()

src/ethereum/osaka/trie.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
from ethereum_types.numeric import U256, Uint
3737
from typing_extensions import assert_type
3838

39-
from ethereum.cancun import trie as previous_trie
4039
from ethereum.crypto.hash import keccak256
40+
from ethereum.prague import trie as previous_trie
4141
from ethereum.utils.hexadecimal import hex_to_bytes
4242

4343
from .blocks import Receipt, Withdrawal

0 commit comments

Comments
 (0)