From 37a89e577c25afe0e0388f154eba1fb97a972971 Mon Sep 17 00:00:00 2001
From: obscuren <geffobscura@gmail.com>
Date: Sat, 8 Feb 2014 23:50:08 +0100
Subject: [PATCH] Added address

---
 ethereum.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ethereum.go b/ethereum.go
index bf379184f..4584ff85c 100644
--- a/ethereum.go
+++ b/ethereum.go
@@ -36,9 +36,9 @@ func CreateKeyPair(force bool) {
 
 		pub, prv := secp256k1.GenerateKeyPair()
 
-		log.Printf("Your new address is %x\n", pub[12:])
+		log.Printf("Your new address is %x\n", ethutil.Sha3Bin(pub)[12:])
 
-		ethutil.Config.Db.Put([]byte("KeyRing"), ethutil.Encode([]interface{}{prv, pub}))
+		ethutil.Config.Db.Put([]byte("KeyRing"), ethutil.Encode([]interface{}{prv, ethutil.Sha3Bin(pub)[12:]}))
 	}
 }
 
-- 
GitLab