[release/1.4.10] cmd, core, eth, params: implement flags to control dao fork blocks

(cherry picked from commit 6060e098c9)
This commit is contained in:
Péter Szilágyi
2016-07-07 16:04:34 +03:00
parent e44d50fb52
commit 3dd46bc884
7 changed files with 354 additions and 46 deletions

View File

@ -21,4 +21,6 @@ import "math/big"
var (
TestNetHomesteadBlock = big.NewInt(494000) // testnet homestead block
MainNetHomesteadBlock = big.NewInt(1150000) // mainnet homestead block
TestNetDAOForkBlock = big.NewInt(8888888) // testnet dao hard-fork block
MainNetDAOForkBlock = big.NewInt(9999999) // mainnet dao hard-fork block
)