Proper keys

This commit is contained in:
obscuren 2014-02-08 23:26:43 +01:00
parent 7b7242b9ea
commit 9ac81c5b2b
1 changed files with 3 additions and 2 deletions

View File

@ -149,8 +149,9 @@ func (i *Console) ParseInput(input string) bool {
fmt.Println("recipient err:", err)
} else {
tx := ethchain.NewTransaction(recipient, ethutil.Big(tokens[2]), []string{""})
privKey, _ := ethutil.Config.Db.Get([]byte("KeyRing"))
tx.Sign(privKey)
data, _ := ethutil.Config.Db.Get([]byte("KeyRing"))
keyRing := ethutil.NewValueFromBytes(data)
tx.Sign(keyRing.Get(0).Bytes())
fmt.Printf("%x\n", tx.Hash())
i.ethereum.TxPool.QueueTransaction(tx)
}