Skip to content

Commit

Permalink
enable Istanbul fork on Ropsten chain (#1851)
Browse files Browse the repository at this point in the history
added release notes
  • Loading branch information
voith authored and pipermerriam committed Sep 18, 2019
1 parent e525493 commit 1254611
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions eth/chains/ropsten/__init__.py
Expand Up @@ -5,6 +5,7 @@
from .constants import (
BYZANTIUM_ROPSTEN_BLOCK,
CONSTANTINOPLE_ROPSTEN_BLOCK,
ISTANBUL_ROPSTEN_BLOCK,
PETERSBURG_ROPSTEN_BLOCK,
ROPSTEN_CHAIN_ID,
SPURIOUS_DRAGON_ROPSTEN_BLOCK,
Expand All @@ -18,6 +19,7 @@
from eth.vm.forks import (
ByzantiumVM,
ConstantinopleVM,
IstanbulVM,
PetersburgVM,
SpuriousDragonVM,
TangerineWhistleVM,
Expand All @@ -31,6 +33,7 @@
(BYZANTIUM_ROPSTEN_BLOCK, ByzantiumVM),
(CONSTANTINOPLE_ROPSTEN_BLOCK, ConstantinopleVM),
(PETERSBURG_ROPSTEN_BLOCK, PetersburgVM),
(ISTANBUL_ROPSTEN_BLOCK, IstanbulVM),
)


Expand Down
6 changes: 6 additions & 0 deletions eth/chains/ropsten/constants.py
Expand Up @@ -46,3 +46,9 @@
# Petersburg
#
PETERSBURG_ROPSTEN_BLOCK = BlockNumber(4939394)


#
# Istanbul
#
ISTANBUL_ROPSTEN_BLOCK = BlockNumber(6485846)
1 change: 1 addition & 0 deletions newsfragments/1851.feature.rst
@@ -0,0 +1 @@
enable Istanbul fork on Ropsten chain

0 comments on commit 1254611

Please sign in to comment.