aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2016-11-15 17:08:32 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2016-11-15 19:40:42 +0800
commit7d9c6f611a6c85405299f51647f366fcf18c9b1e (patch)
tree382dfca069d2996a46966f91795ae84946c5420d
parentdc2e34ddf37cc46e32959a50f03e1d7fe1445630 (diff)
downloadgo-tangerine-7d9c6f611a6c85405299f51647f366fcf18c9b1e.tar
go-tangerine-7d9c6f611a6c85405299f51647f366fcf18c9b1e.tar.gz
go-tangerine-7d9c6f611a6c85405299f51647f366fcf18c9b1e.tar.bz2
go-tangerine-7d9c6f611a6c85405299f51647f366fcf18c9b1e.tar.lz
go-tangerine-7d9c6f611a6c85405299f51647f366fcf18c9b1e.tar.xz
go-tangerine-7d9c6f611a6c85405299f51647f366fcf18c9b1e.tar.zst
go-tangerine-7d9c6f611a6c85405299f51647f366fcf18c9b1e.zip
params: Hardfork block number
-rw-r--r--params/util.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/params/util.go b/params/util.go
index 5764f2f9a..c9c0f393c 100644
--- a/params/util.go
+++ b/params/util.go
@@ -32,6 +32,6 @@ var (
TestNetChainID = big.NewInt(2) // Testnet default chain ID
MainNetChainID = big.NewInt(1) // Main net default chain ID
- TestNetSpuriousDragon = big.NewInt(3000000)
- MainNetSpuriousDragon = big.NewInt(3000000)
+ TestNetSpuriousDragon = big.NewInt(1885000)
+ MainNetSpuriousDragon = big.NewInt(2675000)
)