removed key while in the process of moving to the new key storage

This commit is contained in:
obscuren
2015-01-28 20:50:09 +01:00
parent 1c51e12c18
commit cebb149f5c
9 changed files with 63 additions and 714 deletions

View File

@ -61,7 +61,7 @@ func (gui *Gui) Transact(recipient, value, gas, gasPrice, d string) (string, err
data = ethutil.Bytes2Hex(utils.FormatTransactionData(d))
}
return gui.xeth.Transact(gui.privateKey(), recipient, value, gas, gasPrice, data)
return gui.xeth.Transact(recipient, value, gas, gasPrice, data)
}
func (gui *Gui) SetCustomIdentifier(customIdentifier string) {