diff options
Diffstat (limited to 'cmd/puppeth/wizard_wallet.go')
-rw-r--r-- | cmd/puppeth/wizard_wallet.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cmd/puppeth/wizard_wallet.go b/cmd/puppeth/wizard_wallet.go index aa6d1c659..7c3896a17 100644 --- a/cmd/puppeth/wizard_wallet.go +++ b/cmd/puppeth/wizard_wallet.go @@ -43,15 +43,14 @@ func (w *wizard) deployWallet() { client := w.servers[server] // Retrieve any active node configurations from the server - existed := true - infos, err := checkWallet(client, w.network) if err != nil { infos = &walletInfos{ nodePort: 30303, rpcPort: 8545, webPort: 80, webHost: client.server, } - existed = false } + existed := err == nil + infos.genesis, _ = json.MarshalIndent(w.conf.Genesis, "", " ") infos.network = w.conf.Genesis.Config.ChainId.Int64() |