diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-06-16 22:11:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-16 22:11:54 +0800 |
commit | 431cf2a1e453346bcc627ac1fb9df3950a6c3499 (patch) | |
tree | f8eb78694ed3bbe633c0641bfe977bc395b53c53 | |
parent | fade09a7fffe7a0095076dd3ff57015ab1e2393e (diff) | |
parent | 4f77857f74560b94b6f02d11cac305f7d96f493c (diff) | |
download | go-tangerine-431cf2a1e453346bcc627ac1fb9df3950a6c3499.tar go-tangerine-431cf2a1e453346bcc627ac1fb9df3950a6c3499.tar.gz go-tangerine-431cf2a1e453346bcc627ac1fb9df3950a6c3499.tar.bz2 go-tangerine-431cf2a1e453346bcc627ac1fb9df3950a6c3499.tar.lz go-tangerine-431cf2a1e453346bcc627ac1fb9df3950a6c3499.tar.xz go-tangerine-431cf2a1e453346bcc627ac1fb9df3950a6c3499.tar.zst go-tangerine-431cf2a1e453346bcc627ac1fb9df3950a6c3499.zip |
Merge pull request #14635 from necaremus/patch-1
cmd/geth: fixed a minor typo in the comments
-rw-r--r-- | cmd/geth/accountcmd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/accountcmd.go b/cmd/geth/accountcmd.go index 5c756e66d..0f53c92b0 100644 --- a/cmd/geth/accountcmd.go +++ b/cmd/geth/accountcmd.go @@ -233,7 +233,7 @@ func unlockAccount(ctx *cli.Context, ks *keystore.KeyStore, address string, i in return accounts.Account{}, "" } -// getPassPhrase retrieves the passwor associated with an account, either fetched +// getPassPhrase retrieves the password associated with an account, either fetched // from a list of preloaded passphrases, or requested interactively from the user. func getPassPhrase(prompt string, confirmation bool, i int, passwords []string) string { // If a list of passwords was supplied, retrieve from them |