diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-10-04 17:36:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-04 17:36:15 +0800 |
commit | 127553253e8d21cfbcd38edf3119ce81275c0454 (patch) | |
tree | e44da17a9d1bbd80e869d76c4cf82616eaeed72c | |
parent | ff6e0351ab6343fbb45712f4906beba11abcb507 (diff) | |
parent | 668c37fde112f42496a16d012b6f7dc7a876d13c (diff) | |
download | dexon-127553253e8d21cfbcd38edf3119ce81275c0454.tar.gz dexon-127553253e8d21cfbcd38edf3119ce81275c0454.tar.zst dexon-127553253e8d21cfbcd38edf3119ce81275c0454.zip |
Merge pull request #17801 from eosclassicteam/patch-1
Enable constantinople on Ropsten testnet
-rw-r--r-- | params/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/params/config.go b/params/config.go index a9e631cde..b56775e32 100644 --- a/params/config.go +++ b/params/config.go @@ -66,7 +66,7 @@ var ( EIP155Block: big.NewInt(10), EIP158Block: big.NewInt(10), ByzantiumBlock: big.NewInt(1700000), - ConstantinopleBlock: nil, + ConstantinopleBlock: big.NewInt(4200000), Ethash: new(EthashConfig), } |