File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,12 @@ packages =
116
116
ethereum/prague/vm/instructions
117
117
ethereum/prague/vm/precompiled_contracts
118
118
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
119
125
120
126
121
127
package_dir =
Original file line number Diff line number Diff line change 2
2
The Osaka fork.
3
3
"""
4
4
5
- from ethereum .fork_criteria import ByTimestamp
5
+ from ethereum .fork_criteria import Unscheduled
6
6
7
- FORK_CRITERIA = ByTimestamp ( 1746612311 )
7
+ FORK_CRITERIA = Unscheduled ( )
Original file line number Diff line number Diff line change 36
36
from ethereum_types .numeric import U256 , Uint
37
37
from typing_extensions import assert_type
38
38
39
- from ethereum .cancun import trie as previous_trie
40
39
from ethereum .crypto .hash import keccak256
40
+ from ethereum .prague import trie as previous_trie
41
41
from ethereum .utils .hexadecimal import hex_to_bytes
42
42
43
43
from .blocks import Receipt , Withdrawal
You can’t perform that action at this time.
0 commit comments