aboutsummaryrefslogtreecommitdiffstats
path: root/params/util.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@users.noreply.github.com>2017-05-25 04:28:22 +0800
committerGitHub <noreply@github.com>2017-05-25 04:28:22 +0800
commit261b3e235160d30cc7176e02fd0a43f2b60409c6 (patch)
tree9d3eb6eec9fc2d30badba7bc6824560bcb317132 /params/util.go
parent344f25fb3ec26818c673a5b68b21b527759d7499 (diff)
parent11cf5b7eadb7fcfa56a0cb98ec4ebbddce00f4c0 (diff)
downloadgo-tangerine-261b3e235160d30cc7176e02fd0a43f2b60409c6.tar
go-tangerine-261b3e235160d30cc7176e02fd0a43f2b60409c6.tar.gz
go-tangerine-261b3e235160d30cc7176e02fd0a43f2b60409c6.tar.bz2
go-tangerine-261b3e235160d30cc7176e02fd0a43f2b60409c6.tar.lz
go-tangerine-261b3e235160d30cc7176e02fd0a43f2b60409c6.tar.xz
go-tangerine-261b3e235160d30cc7176e02fd0a43f2b60409c6.tar.zst
go-tangerine-261b3e235160d30cc7176e02fd0a43f2b60409c6.zip
Merge pull request #14336 from obscuren/metropolis-preparation
consensus, core/*, params: metropolis preparation refactor
Diffstat (limited to 'params/util.go')
-rw-r--r--params/util.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/params/util.go b/params/util.go
index bf833d510..d4d43d047 100644
--- a/params/util.go
+++ b/params/util.go
@@ -17,6 +17,7 @@
package params
import (
+ "math"
"math/big"
"github.com/ethereum/go-ethereum/common"
@@ -38,6 +39,9 @@ var (
TestNetSpuriousDragon = big.NewInt(10)
MainNetSpuriousDragon = big.NewInt(2675000)
- TestNetChainID = big.NewInt(3) // Testnet default chain ID
- MainNetChainID = big.NewInt(1) // Mainnet default chain ID
+ TestNetMetropolisBlock = big.NewInt(math.MaxInt64)
+ MainNetMetropolisBlock = big.NewInt(math.MaxInt64)
+
+ TestNetChainID = big.NewInt(3) // Test net default chain ID
+ MainNetChainID = big.NewInt(1) // main net default chain ID
)