diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-12-25 09:49:40 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2018-12-25 09:49:40 +0800 |
commit | 865f8d9baec2c2e4a330121976a2d330c877f19c (patch) | |
tree | 9fed31da839aeff19c2890a07040c5b4fce94bdc | |
parent | 11aee31adffabfa0e996eb100c8b15a311976956 (diff) | |
download | dexon-865f8d9baec2c2e4a330121976a2d330c877f19c.tar.gz dexon-865f8d9baec2c2e4a330121976a2d330c877f19c.tar.zst dexon-865f8d9baec2c2e4a330121976a2d330c877f19c.zip |
params: enable constantinople fork for testnets
-rw-r--r-- | params/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/params/config.go b/params/config.go index 94b9a34fc..cfa3ffbda 100644 --- a/params/config.go +++ b/params/config.go @@ -82,7 +82,7 @@ var ( EIP155Block: big.NewInt(0), EIP158Block: big.NewInt(0), ByzantiumBlock: big.NewInt(0), - ConstantinopleBlock: nil, + ConstantinopleBlock: big.NewInt(0), Dexcon: &DexconConfig{ GenesisCRSText: "In DEXON, we trust.", Owner: common.HexToAddress("BF8C48A620bacc46907f9B89732D25E47A2D7Cf7"), @@ -112,7 +112,7 @@ var ( EIP155Block: big.NewInt(0), EIP158Block: big.NewInt(0), ByzantiumBlock: big.NewInt(0), - ConstantinopleBlock: nil, + ConstantinopleBlock: big.NewInt(0), Dexcon: &DexconConfig{ GenesisCRSText: "In DEXON, we trust.", Owner: common.HexToAddress("BF8C48A620bacc46907f9B89732D25E47A2D7Cf7"), |