aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum
diff options
context:
space:
mode:
authorMaran <maran.hidskes@gmail.com>2014-04-09 22:29:52 +0800
committerMaran <maran.hidskes@gmail.com>2014-04-09 22:29:52 +0800
commitcc5501b12f1b4f2297344d85f4d7f8c95b36fc34 (patch)
tree302093e2acb841aa530e14907ce7ba9501913954 /ethereum
parent52b63459e9aa39020894df44a586453444b70ee0 (diff)
downloaddexon-cc5501b12f1b4f2297344d85f4d7f8c95b36fc34.tar
dexon-cc5501b12f1b4f2297344d85f4d7f8c95b36fc34.tar.gz
dexon-cc5501b12f1b4f2297344d85f4d7f8c95b36fc34.tar.bz2
dexon-cc5501b12f1b4f2297344d85f4d7f8c95b36fc34.tar.lz
dexon-cc5501b12f1b4f2297344d85f4d7f8c95b36fc34.tar.xz
dexon-cc5501b12f1b4f2297344d85f4d7f8c95b36fc34.tar.zst
dexon-cc5501b12f1b4f2297344d85f4d7f8c95b36fc34.zip
Importing mnemonic support
Diffstat (limited to 'ethereum')
-rw-r--r--ethereum/ethereum.go13
1 files changed, 12 insertions, 1 deletions
diff --git a/ethereum/ethereum.go b/ethereum/ethereum.go
index c82e7dcd8..e1e803771 100644
--- a/ethereum/ethereum.go
+++ b/ethereum/ethereum.go
@@ -11,6 +11,7 @@ import (
"os"
"os/signal"
"runtime"
+ "strings"
)
const Debug = true
@@ -78,7 +79,17 @@ func main() {
}
if r == "y" {
- utils.ImportPrivateKey(ImportKey)
+ mnemonic := strings.Split(ImportKey, " ")
+ if len(mnemonic) == 24 {
+ fmt.Println("Got mnemonic key, importing.")
+ key := ethutil.MnemonicDecode(mnemonic)
+ utils.ImportPrivateKey(key)
+ } else if len(mnemonic) == 1 {
+ fmt.Println("Got hex key, importing.")
+ utils.ImportPrivateKey(ImportKey)
+ } else {
+ fmt.Println("Did not recognise format, exiting.")
+ }
os.Exit(0)
}
} else {