Skip to content

Commit

Permalink
Remove logging of password if fails (prysmaticlabs#7404)
Browse files Browse the repository at this point in the history
* Remove logging of password if fails
  • Loading branch information
terencechain authored Oct 1, 2020
1 parent 95a5b49 commit 490cf9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/sendDepositTx/sendDeposits.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func main() {
prefix := params.BeaconConfig().ValidatorPrivkeyFileName
validatorKeys, err = store.GetKeys(prysmKeystorePath, prefix, rawPassword, false /* warnOnFail */)
if err != nil {
log.WithField("path", prysmKeystorePath).WithField("password", rawPassword).Errorf("Could not get keys: %v", err)
log.WithField("path", prysmKeystorePath).Errorf("Could not get keys: %v", err)
}
}

Expand Down

0 comments on commit 490cf9b

Please sign in to comment.