diff options
author | obscuren <geffobscura@gmail.com> | 2014-07-02 02:10:38 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-07-02 02:10:38 +0800 |
commit | 283532137713d20ca82d264bd105cf7cb0e47b65 (patch) | |
tree | b3748c6af162b3b86076badb6176182227192cb4 /utils | |
parent | 74ef489fe276229858d4e69ca941eeb23f9e6f22 (diff) | |
download | dexon-283532137713d20ca82d264bd105cf7cb0e47b65.tar.gz dexon-283532137713d20ca82d264bd105cf7cb0e47b65.tar.zst dexon-283532137713d20ca82d264bd105cf7cb0e47b65.zip |
Fixed namereg
Diffstat (limited to 'utils')
-rw-r--r-- | utils/cmd.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/cmd.go b/utils/cmd.go index 7b2ac0e40..e10addf6c 100644 --- a/utils/cmd.go +++ b/utils/cmd.go @@ -106,6 +106,7 @@ func InitConfig(ConfigFile string, Datadir string, Identifier string, EnvPrefix func exit(err error) { status := 0 if err != nil { + fmt.Println(err) logger.Errorln("Fatal: ", err) status = 1 } @@ -167,6 +168,8 @@ func KeyTasks(keyManager *ethcrypto.KeyManager, KeyRing string, GenAddr bool, Se } exit(err) case len(SecretFile) > 0: + SecretFile = ethutil.ExpandHomePath(SecretFile) + if NonInteractive || confirm("This action overwrites your old private key.") { err = keyManager.InitFromSecretsFile(KeyRing, 0, SecretFile) } |