diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-07-07 21:04:34 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-07-15 21:52:55 +0800 |
commit | 6060e098c929792f455d7f580ed91e914d28cf3b (patch) | |
tree | 1518c9572c5c5609069e6d6c8d03fdf261fd4ad8 /params/util.go | |
parent | aa1e052cb41c39363a9930added46dac5b6db832 (diff) | |
download | go-tangerine-6060e098c929792f455d7f580ed91e914d28cf3b.tar.gz go-tangerine-6060e098c929792f455d7f580ed91e914d28cf3b.tar.zst go-tangerine-6060e098c929792f455d7f580ed91e914d28cf3b.zip |
cmd, core, eth, params: implement flags to control dao fork blocks
Diffstat (limited to 'params/util.go')
-rw-r--r-- | params/util.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/params/util.go b/params/util.go index b37bc79b2..b76850852 100644 --- a/params/util.go +++ b/params/util.go @@ -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 ) |