diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-29 05:14:23 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-29 05:14:23 +0800 |
commit | 8fab7ce37d6748cbf34ebee96622448ec8a4c9e3 (patch) | |
tree | 2df5f7e76d39163c8c2f72558bd9d6d682dbf44f /ethereal/ui/gui.go | |
parent | 1eda1d25b0d27fe57287698fb883c9153ddda292 (diff) | |
download | dexon-8fab7ce37d6748cbf34ebee96622448ec8a4c9e3.tar.gz dexon-8fab7ce37d6748cbf34ebee96622448ec8a4c9e3.tar.zst dexon-8fab7ce37d6748cbf34ebee96622448ec8a4c9e3.zip |
Fixes and improved debugger
Diffstat (limited to 'ethereal/ui/gui.go')
-rw-r--r-- | ethereal/ui/gui.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/ui/gui.go b/ethereal/ui/gui.go index 63ab028ab..6a1c4f110 100644 --- a/ethereal/ui/gui.go +++ b/ethereal/ui/gui.go @@ -269,5 +269,5 @@ func (gui *Gui) Transact(recipient, value, gas, gasPrice, data string) (*ethpub. func (gui *Gui) Create(recipient, value, gas, gasPrice, data string) (*ethpub.PReceipt, error) { keyPair := ethutil.GetKeyRing().Get(0) - return gui.pub.Create(ethutil.Hex(keyPair.PrivateKey), value, gas, gasPrice, data) + return gui.pub.Transact(ethutil.Hex(keyPair.PrivateKey), recipient, value, gas, gasPrice, data) } |