Skip to content

Commit 8f207a9

Browse files
committed
create transition fork
1 parent b51ba61 commit 8f207a9

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

DevnetEestBlockchainTests.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ OK: 1/1 Fail: 0/1 Skip: 0/1
3535
## count_leading_zeros
3636
```diff
3737
+ clz_code_copy_operation.json OK
38-
- clz_fork_transition.json Fail
38+
+ clz_fork_transition.json OK
3939
+ clz_gas_cost.json OK
4040
+ clz_gas_cost_boundary.json OK
4141
+ clz_jump_operation.json OK
4242
+ clz_opcode_scenarios.json OK
4343
+ clz_stack_underflow.json OK
4444
+ clz_with_memory_operation.json OK
4545
```
46-
OK: 7/8 Fail: 1/8 Skip: 0/8
46+
OK: 8/8 Fail: 0/8 Skip: 0/8
4747
## initcode
4848
```diff
4949
+ contract_creating_tx.json OK
@@ -54,10 +54,10 @@ OK: 3/3 Fail: 0/3 Skip: 0/3
5454
## max_blob_per_tx
5555
```diff
5656
+ invalid_max_blobs_per_tx.json OK
57-
- max_blobs_per_tx_fork_transition.json Fail
57+
+ max_blobs_per_tx_fork_transition.json OK
5858
+ valid_max_blobs_per_tx.json OK
5959
```
60-
OK: 2/3 Fail: 1/3 Skip: 0/3
60+
OK: 3/3 Fail: 0/3 Skip: 0/3
6161
## max_block_rlp_size
6262
```diff
6363
+ block_at_rlp_limit_with_logs.json OK
@@ -91,9 +91,9 @@ OK: 1/1 Fail: 0/1 Skip: 0/1
9191
OK: 5/5 Fail: 0/5 Skip: 0/5
9292
## p256verify_before_fork
9393
```diff
94-
- precompile_before_fork.json Fail
94+
+ precompile_before_fork.json OK
9595
```
96-
OK: 0/1 Fail: 1/1 Skip: 0/1
96+
OK: 1/1 Fail: 0/1 Skip: 0/1
9797
## precompiles
9898
```diff
9999
+ precompiles.json OK
@@ -107,14 +107,14 @@ OK: 1/1 Fail: 0/1 Skip: 0/1
107107
## tx_gas_limit
108108
```diff
109109
+ transaction_gas_limit_cap.json OK
110-
- transaction_gas_limit_cap_at_transition.json Fail
110+
+ transaction_gas_limit_cap_at_transition.json OK
111111
```
112-
OK: 1/2 Fail: 1/2 Skip: 0/2
112+
OK: 2/2 Fail: 0/2 Skip: 0/2
113113
## with_eof
114114
```diff
115115
+ legacy_create_edge_code_size.json OK
116116
```
117117
OK: 1/1 Fail: 0/1 Skip: 0/1
118118

119119
---TOTAL---
120-
OK: 36/51 Fail: 15/51 Skip: 0/51
120+
OK: 40/51 Fail: 11/51 Skip: 0/51

tools/common/helpers.nim

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ func getChainConfig*(network: string, c: ChainConfig) =
133133
c.assignTime(HardFork.Prague, EthTime(15000))
134134
of $TestFork.Osaka:
135135
c.assignTime(HardFork.Osaka, TimeZero)
136+
of $TestFork.PragueToOsakaAtTime15k:
137+
c.assignTime(HardFork.Osaka, EthTime(15000))
136138
else:
137139
raise newException(ValueError, "unsupported network " & network)
138140

tools/common/types.nim

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ type
4040
Prague
4141
CancunToPragueAtTime15k
4242
Osaka
43+
PragueToOsakaAtTime15k
4344

4445
LogLevel* = enum
4546
Silent

0 commit comments

Comments
 (0)