aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-07-02 02:10:38 +0800
committerobscuren <geffobscura@gmail.com>2014-07-02 02:10:38 +0800
commit283532137713d20ca82d264bd105cf7cb0e47b65 (patch)
treeb3748c6af162b3b86076badb6176182227192cb4 /utils
parent74ef489fe276229858d4e69ca941eeb23f9e6f22 (diff)
downloadgo-tangerine-283532137713d20ca82d264bd105cf7cb0e47b65.tar
go-tangerine-283532137713d20ca82d264bd105cf7cb0e47b65.tar.gz
go-tangerine-283532137713d20ca82d264bd105cf7cb0e47b65.tar.bz2
go-tangerine-283532137713d20ca82d264bd105cf7cb0e47b65.tar.lz
go-tangerine-283532137713d20ca82d264bd105cf7cb0e47b65.tar.xz
go-tangerine-283532137713d20ca82d264bd105cf7cb0e47b65.tar.zst
go-tangerine-283532137713d20ca82d264bd105cf7cb0e47b65.zip
Fixed namereg
Diffstat (limited to 'utils')
-rw-r--r--utils/cmd.go3
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)
}