aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorMaran <maran.hidskes@gmail.com>2014-04-07 19:59:42 +0800
committerMaran <maran.hidskes@gmail.com>2014-04-07 19:59:42 +0800
commit2edf133b4671287e58c1f8cdb22f0cd342f309f2 (patch)
treeed75f558ddb7ff59a9b3c3c86540b03183586d32 /utils
parente403b28eea6959c1d0ed003d955df3dee586083b (diff)
downloadgo-tangerine-2edf133b4671287e58c1f8cdb22f0cd342f309f2.tar
go-tangerine-2edf133b4671287e58c1f8cdb22f0cd342f309f2.tar.gz
go-tangerine-2edf133b4671287e58c1f8cdb22f0cd342f309f2.tar.bz2
go-tangerine-2edf133b4671287e58c1f8cdb22f0cd342f309f2.tar.lz
go-tangerine-2edf133b4671287e58c1f8cdb22f0cd342f309f2.tar.xz
go-tangerine-2edf133b4671287e58c1f8cdb22f0cd342f309f2.tar.zst
go-tangerine-2edf133b4671287e58c1f8cdb22f0cd342f309f2.zip
Added mnemonic priv key
Diffstat (limited to 'utils')
-rw-r--r--utils/keys.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/keys.go b/utils/keys.go
index 910c8c477..2f39c10b2 100644
--- a/utils/keys.go
+++ b/utils/keys.go
@@ -12,6 +12,7 @@ func CreateKeyPair(force bool) {
pub, prv := secp256k1.GenerateKeyPair()
pair := &ethutil.Key{PrivateKey: prv, PublicKey: pub}
ethutil.Config.Db.Put([]byte("KeyRing"), pair.RlpEncode())
+ mne := ethutil.MnemonicEncode(ethutil.Hex(prv))
fmt.Printf(`
Generating new address and keypair.
@@ -22,8 +23,8 @@ addr: %x
prvk: %x
pubk: %x
++++++++++++++++++++++++++++++++++++++++++++
-
-`, pair.Address(), prv, pub)
+save these words so you can restore your account later: %s
+`, pair.Address(), prv, pub, mne)
}
}