cmd/puppeth: fix improper key validation for remotes

pull/14553/head
Péter Szilágyi 7 years ago
parent b0f30b0b37
commit ec1700600a
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D
  1. 2
      cmd/puppeth/module_node.go
  2. 3
      cmd/puppeth/wizard_node.go

@ -135,7 +135,7 @@ func deployNode(client *sshClient, network string, bootv4, bootv5 []string, conf
}
defer client.Run("rm -rf " + workdir)
// Build and deploy the bootnode service
// Build and deploy the boot or seal node service
return nil, client.Stream(fmt.Sprintf("cd %s && docker-compose -p %s up -d --build", workdir, network))
}

@ -109,8 +109,7 @@ func (w *wizard) deployNode(boot bool) {
} else if w.conf.genesis.Config.Clique != nil {
// If a previous signer was already set, offer to reuse it
if infos.keyJSON != "" {
var key keystore.Key
if err := json.Unmarshal([]byte(infos.keyJSON), &key); err != nil {
if key, err := keystore.DecryptKey([]byte(infos.keyJSON), infos.keyPass); err != nil {
infos.keyJSON, infos.keyPass = "", ""
} else {
fmt.Println()

Loading…
Cancel
Save