File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Expand file tree Collapse file tree 4 files changed +12
-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 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
Original file line number Diff line number Diff line change 2
2
The Prague fork.
3
3
"""
4
4
5
- from ethereum .fork_criteria import Unscheduled
5
+ from ethereum .fork_criteria import ByTimestamp
6
6
7
- FORK_CRITERIA = Unscheduled ( )
7
+ FORK_CRITERIA = ByTimestamp ( 1710338138 )
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ commands =
22
22
pytest \
23
23
-m " not slow" \
24
24
-n auto --maxprocesses 5 \
25
+ tests/osaka \
25
26
--cov =ethereum --cov-report =term --cov-report " xml:{toxworkdir}/coverage.xml" \
26
27
--ignore-glob =' tests/fixtures/*' \
27
28
--basetemp =" {temp_dir}/pytest"
@@ -38,6 +39,7 @@ commands =
38
39
--disable-warnings \
39
40
-m " not slow" \
40
41
-n auto --maxprocesses 2 \
42
+ tests/osaka \
41
43
--ignore-glob =' tests/fixtures/*' \
42
44
--basetemp =" {temp_dir}/pytest"
43
45
@@ -51,6 +53,7 @@ commands =
51
53
pytest \
52
54
-m " not slow and not evm_tools" \
53
55
-n auto --maxprocesses 5 \
56
+ tests/osaka \
54
57
--ignore-glob =' tests/fixtures/*' \
55
58
--ignore-glob =' tests/test_t8n.py' \
56
59
--basetemp =" {temp_dir}/pytest" \
You can’t perform that action at this time.
0 commit comments