Commit b871979 1 parent 9846579 commit b871979 Copy full SHA for b871979
File tree 1 file changed +0
-4
lines changed
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 13
13
from .constants import (
14
14
MAINNET_CHAIN_ID ,
15
15
BYZANTIUM_MAINNET_BLOCK ,
16
- CONSTANTINOPLE_MAINNET_BLOCK ,
17
16
TANGERINE_WHISTLE_MAINNET_BLOCK ,
18
17
HOMESTEAD_MAINNET_BLOCK ,
19
18
SPURIOUS_DRAGON_MAINNET_BLOCK ,
29
28
from eth .vm .base import BaseVM # noqa: F401
30
29
from eth .vm .forks import (
31
30
ByzantiumVM ,
32
- ConstantinopleVM ,
33
31
FrontierVM ,
34
32
HomesteadVM ,
35
33
SpuriousDragonVM ,
@@ -80,15 +78,13 @@ class MainnetHomesteadVM(MainnetDAOValidatorVM):
80
78
TANGERINE_WHISTLE_MAINNET_BLOCK ,
81
79
SPURIOUS_DRAGON_MAINNET_BLOCK ,
82
80
BYZANTIUM_MAINNET_BLOCK ,
83
- CONSTANTINOPLE_MAINNET_BLOCK ,
84
81
)
85
82
MAINNET_VMS = (
86
83
FrontierVM ,
87
84
MainnetHomesteadVM ,
88
85
TangerineWhistleVM ,
89
86
SpuriousDragonVM ,
90
87
ByzantiumVM ,
91
- ConstantinopleVM ,
92
88
)
93
89
94
90
MAINNET_VM_CONFIGURATION = tuple (zip (MAINNET_FORK_BLOCKS , MAINNET_VMS ))
You can’t perform that action at this time.
0 commit comments