diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-10-23 17:24:25 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-11-21 21:09:36 +0800 |
commit | 6eb38e02a8e3bd39ba155df0b40560e384e2c6f4 (patch) | |
tree | b52a604e47af88a63a40ce1b55ebd9474eccf6b5 /cmd/puppeth/wizard_node.go | |
parent | 51a86f61be52fdd16a409fc93cf89a2226129697 (diff) | |
download | go-tangerine-6eb38e02a8e3bd39ba155df0b40560e384e2c6f4.tar go-tangerine-6eb38e02a8e3bd39ba155df0b40560e384e2c6f4.tar.gz go-tangerine-6eb38e02a8e3bd39ba155df0b40560e384e2c6f4.tar.bz2 go-tangerine-6eb38e02a8e3bd39ba155df0b40560e384e2c6f4.tar.lz go-tangerine-6eb38e02a8e3bd39ba155df0b40560e384e2c6f4.tar.xz go-tangerine-6eb38e02a8e3bd39ba155df0b40560e384e2c6f4.tar.zst go-tangerine-6eb38e02a8e3bd39ba155df0b40560e384e2c6f4.zip |
cmd/puppeth: fix dashboard iframes, extend with new services
Diffstat (limited to 'cmd/puppeth/wizard_node.go')
-rw-r--r-- | cmd/puppeth/wizard_node.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/puppeth/wizard_node.go b/cmd/puppeth/wizard_node.go index f1b4619b5..f5b2d7358 100644 --- a/cmd/puppeth/wizard_node.go +++ b/cmd/puppeth/wizard_node.go @@ -65,7 +65,7 @@ func (w *wizard) deployNode(boot bool) { fmt.Printf("Where should data be stored on the remote machine? (default = %s)\n", infos.datadir) infos.datadir = w.readDefaultString(infos.datadir) } - if w.conf.genesis.Config.Ethash != nil { + if w.conf.genesis.Config.Ethash != nil && !boot { fmt.Println() if infos.ethashdir == "" { fmt.Printf("Where should the ethash mining DAGs be stored on the remote machine?\n") |