diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-10-02 20:40:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-02 20:40:54 +0800 |
commit | d3476562805a5b1026d91f0d954596e57e9de483 (patch) | |
tree | f3d552d9e3f3469cf1fc4926b03590d2c98334d1 /cmd/puppeth | |
parent | f86c4177d506b635f9ebdaea8ab5aef27f53d20a (diff) | |
parent | 7514e8a24d3dc332e58be4b26f893aff8c24a9e7 (diff) | |
download | dexon-d3476562805a5b1026d91f0d954596e57e9de483.tar dexon-d3476562805a5b1026d91f0d954596e57e9de483.tar.gz dexon-d3476562805a5b1026d91f0d954596e57e9de483.tar.bz2 dexon-d3476562805a5b1026d91f0d954596e57e9de483.tar.lz dexon-d3476562805a5b1026d91f0d954596e57e9de483.tar.xz dexon-d3476562805a5b1026d91f0d954596e57e9de483.tar.zst dexon-d3476562805a5b1026d91f0d954596e57e9de483.zip |
Merge pull request #15224 from karalabe/byzantium-block-numbers
cmd/puppeth, params: enable Byzantium on all networks
Diffstat (limited to 'cmd/puppeth')
-rw-r--r-- | cmd/puppeth/wizard_genesis.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/puppeth/wizard_genesis.go b/cmd/puppeth/wizard_genesis.go index 705e01031..43dae9c20 100644 --- a/cmd/puppeth/wizard_genesis.go +++ b/cmd/puppeth/wizard_genesis.go @@ -42,6 +42,7 @@ func (w *wizard) makeGenesis() { EIP150Block: big.NewInt(2), EIP155Block: big.NewInt(3), EIP158Block: big.NewInt(3), + ByzantiumBlock: big.NewInt(4), }, } // Figure out which consensus engine to choose |