File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 3
3
4
4
from .constants import (
5
5
BYZANTIUM_ROPSTEN_BLOCK ,
6
+ CONSTANTINOPLE_BLOCK ,
6
7
ROPSTEN_CHAIN_ID ,
7
8
SPURIOUS_DRAGON_ROPSTEN_BLOCK ,
8
9
TANGERINE_WHISTLE_ROPSTEN_BLOCK ,
14
15
from eth .vm .base import BaseVM # noqa: F401
15
16
from eth .vm .forks import (
16
17
ByzantiumVM ,
18
+ ConstantinopleVM ,
17
19
SpuriousDragonVM ,
18
20
TangerineWhistleVM ,
19
21
)
24
26
(TANGERINE_WHISTLE_ROPSTEN_BLOCK , TangerineWhistleVM ),
25
27
(SPURIOUS_DRAGON_ROPSTEN_BLOCK , SpuriousDragonVM ),
26
28
(BYZANTIUM_ROPSTEN_BLOCK , ByzantiumVM ),
29
+ (CONSTANTINOPLE_BLOCK , ConstantinopleVM ),
27
30
)
28
31
29
32
Original file line number Diff line number Diff line change 3
3
4
4
# Fork Blocks listed in ascending order
5
5
6
- #
7
- # Byzantium Block
8
- #
9
- BYZANTIUM_ROPSTEN_BLOCK = 1700000
10
-
11
-
12
6
#
13
7
# DAO Block
14
8
#
31
25
# Spurious Dragon Block
32
26
#
33
27
SPURIOUS_DRAGON_ROPSTEN_BLOCK = 10
28
+
29
+
30
+ #
31
+ # Byzantium Block
32
+ #
33
+ BYZANTIUM_ROPSTEN_BLOCK = 1700000
34
+
35
+
36
+ #
37
+ # Constantinople
38
+ #
39
+ CONSTANTINOPLE_BLOCK = 4230000
You can’t perform that action at this time.
0 commit comments