cmd/puppeth: fix typos and review suggestions

This commit is contained in:
Péter Szilágyi
2017-11-23 14:22:59 +02:00
parent b169a309f9
commit a3a2c6b0d9
13 changed files with 19 additions and 25 deletions

View File

@ -45,8 +45,6 @@ func (w *wizard) deployNode(boot bool) {
client := w.servers[server]
// Retrieve any active node configurations from the server
existed := true
infos, err := checkNode(client, w.network, boot)
if err != nil {
if boot {
@ -54,8 +52,9 @@ func (w *wizard) deployNode(boot bool) {
} else {
infos = &nodeInfos{portFull: 30303, peersTotal: 50, peersLight: 0, gasTarget: 4.7, gasPrice: 18}
}
existed = false
}
existed := err == nil
infos.genesis, _ = json.MarshalIndent(w.conf.Genesis, "", " ")
infos.network = w.conf.Genesis.Config.ChainId.Int64()