diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-19 02:12:58 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-05-19 02:12:58 +0800 |
commit | d6adadc5e37f3d01cac25b5371e1c42b7036735a (patch) | |
tree | 4ab0d866e97322ffd838110fbfb9656733eb8e6a /cmd/geth/admin.go | |
parent | a3a5f8b59342363613f46af3413a2e5a8c124da8 (diff) | |
parent | 0864f1fc8e281bdfd87daaa24881f9f96d6bd10c (diff) | |
download | dexon-d6adadc5e37f3d01cac25b5371e1c42b7036735a.tar dexon-d6adadc5e37f3d01cac25b5371e1c42b7036735a.tar.gz dexon-d6adadc5e37f3d01cac25b5371e1c42b7036735a.tar.bz2 dexon-d6adadc5e37f3d01cac25b5371e1c42b7036735a.tar.lz dexon-d6adadc5e37f3d01cac25b5371e1c42b7036735a.tar.xz dexon-d6adadc5e37f3d01cac25b5371e1c42b7036735a.tar.zst dexon-d6adadc5e37f3d01cac25b5371e1c42b7036735a.zip |
Merge pull request #1033 from tgerring/issue1010
Add "removedb" command to Geth
Diffstat (limited to 'cmd/geth/admin.go')
-rw-r--r-- | cmd/geth/admin.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/geth/admin.go b/cmd/geth/admin.go index ebdf3512a..53dd0e6ad 100644 --- a/cmd/geth/admin.go +++ b/cmd/geth/admin.go @@ -383,7 +383,7 @@ func (js *jsre) unlock(call otto.FunctionCall) otto.Value { var passphrase string if arg.IsUndefined() { fmt.Println("Please enter a passphrase now.") - passphrase, err = readPassword("Passphrase: ", true) + passphrase, err = utils.PromptPassword("Passphrase: ", true) if err != nil { fmt.Println(err) return otto.FalseValue() @@ -410,12 +410,12 @@ func (js *jsre) newAccount(call otto.FunctionCall) otto.Value { if arg.IsUndefined() { fmt.Println("The new account will be encrypted with a passphrase.") fmt.Println("Please enter a passphrase now.") - auth, err := readPassword("Passphrase: ", true) + auth, err := utils.PromptPassword("Passphrase: ", true) if err != nil { fmt.Println(err) return otto.FalseValue() } - confirm, err := readPassword("Repeat Passphrase: ", false) + confirm, err := utils.PromptPassword("Repeat Passphrase: ", false) if err != nil { fmt.Println(err) return otto.FalseValue() |