good morning!!!!

Skip to content
Snippets Groups Projects
Commit 8320fd99 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Added pub key to keyring

parent 37a89e57
No related branches found
No related tags found
No related merge requests found
......@@ -35,10 +35,13 @@ func CreateKeyPair(force bool) {
log.Println("Generating new address and keypair")
pub, prv := secp256k1.GenerateKeyPair()
addr := ethutil.Sha3Bin(pub)[12:]
log.Printf("Your new address is %x\n", ethutil.Sha3Bin(pub)[12:])
log.Printf("Your new address is %x\n", addr)
log.Printf("Your new pubkey is %x (%d)\n", pub, len(pub))
ethutil.Config.Db.Put([]byte("KeyRing"), ethutil.Encode([]interface{}{prv, ethutil.Sha3Bin(pub)[12:]}))
keyRing := ethutil.NewValue([]interface{}{prv, addr, pub})
ethutil.Config.Db.Put([]byte("KeyRing"), keyRing.Encode())
}
}
......@@ -103,7 +106,7 @@ func main() {
ethereum.Start()
if StartMining {
log.Printf("Dev Test Mining started...\n")
log.Printf("Miner started\n")
// Fake block mining. It broadcasts a new block every 5 seconds
go func() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment