aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-12-10 17:46:39 +0800
committerGitHub <noreply@github.com>2018-12-10 17:46:39 +0800
commit09d588e0da77c1ed150d7274f66a67dcaecab80c (patch)
tree77f766766f60f1130be407d6e2e99880fe3dd57e
parentdfa16a3e4e0e0b5b20bfda7b7e89ebd07ea0a1a5 (diff)
parent6a1a4375c680ba4c9ee49ae7cf1e5ab0ab72bdfb (diff)
downloadgo-tangerine-09d588e0da77c1ed150d7274f66a67dcaecab80c.tar
go-tangerine-09d588e0da77c1ed150d7274f66a67dcaecab80c.tar.gz
go-tangerine-09d588e0da77c1ed150d7274f66a67dcaecab80c.tar.bz2
go-tangerine-09d588e0da77c1ed150d7274f66a67dcaecab80c.tar.lz
go-tangerine-09d588e0da77c1ed150d7274f66a67dcaecab80c.tar.xz
go-tangerine-09d588e0da77c1ed150d7274f66a67dcaecab80c.tar.zst
go-tangerine-09d588e0da77c1ed150d7274f66a67dcaecab80c.zip
Merge pull request #18268 from karalabe/forkit
params: set mainnet and Rinkeby Constantinople fork blocks
-rw-r--r--params/config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/params/config.go b/params/config.go
index ba9fac1c4..7734c6e9c 100644
--- a/params/config.go
+++ b/params/config.go
@@ -42,7 +42,7 @@ var (
EIP155Block: big.NewInt(2675000),
EIP158Block: big.NewInt(2675000),
ByzantiumBlock: big.NewInt(4370000),
- ConstantinopleBlock: nil,
+ ConstantinopleBlock: big.NewInt(7080000),
Ethash: new(EthashConfig),
}
@@ -90,7 +90,7 @@ var (
EIP155Block: big.NewInt(3),
EIP158Block: big.NewInt(3),
ByzantiumBlock: big.NewInt(1035301),
- ConstantinopleBlock: nil,
+ ConstantinopleBlock: big.NewInt(3660663),
Clique: &CliqueConfig{
Period: 15,
Epoch: 30000,