Merge pull request #14690 from karalabe/faucet-key-reuse

cmd/puppeth: fix key reuse during faucet deploys
This commit is contained in:
Péter Szilágyi 2017-06-26 14:03:46 +03:00 committed by GitHub
commit c008176f9f

View File

@ -165,8 +165,7 @@ func (w *wizard) deployFaucet() {
}
// Load up the credential needed to release funds
if infos.node.keyJSON != "" {
var key keystore.Key
if err := json.Unmarshal([]byte(infos.node.keyJSON), &key); err != nil {
if key, err := keystore.DecryptKey([]byte(infos.node.keyJSON), infos.node.keyPass); err != nil {
infos.node.keyJSON, infos.node.keyPass = "", ""
} else {
fmt.Println()