diff options
Diffstat (limited to 'params/util.go')
-rw-r--r-- | params/util.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/params/util.go b/params/util.go index 856a39e3a..0a14f0374 100644 --- a/params/util.go +++ b/params/util.go @@ -18,7 +18,11 @@ package params import "math/big" -var HomesteadBlock *big.Int = big.NewInt(2000000) +var ( + TestNetHomesteadBlock = big.NewInt(494000) // testnet homestead block + MainNetHomesteadBlock = big.NewInt(2000000) // mainnet homestead block + HomesteadBlock = MainNetHomesteadBlock // homestead block used to check against +) func IsHomestead(blockNumber *big.Int) bool { // for unit tests TODO: flip to true after homestead is live |