diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-23 20:37:03 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-23 20:37:03 +0800 |
commit | d35380c19e5ce92b57158e7780f7105dc4136916 (patch) | |
tree | 44b358714448d492dcf8cdcddb4d1e6e57c4318b /ethereal/ui/ui_lib.go | |
parent | 5f8911f7cba2cf837d891735f46b02b34e4fc228 (diff) | |
download | dexon-d35380c19e5ce92b57158e7780f7105dc4136916.tar dexon-d35380c19e5ce92b57158e7780f7105dc4136916.tar.gz dexon-d35380c19e5ce92b57158e7780f7105dc4136916.tar.bz2 dexon-d35380c19e5ce92b57158e7780f7105dc4136916.tar.lz dexon-d35380c19e5ce92b57158e7780f7105dc4136916.tar.xz dexon-d35380c19e5ce92b57158e7780f7105dc4136916.tar.zst dexon-d35380c19e5ce92b57158e7780f7105dc4136916.zip |
New main script through init return value
Diffstat (limited to 'ethereal/ui/ui_lib.go')
-rw-r--r-- | ethereal/ui/ui_lib.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/ui/ui_lib.go b/ethereal/ui/ui_lib.go index 0c43f1675..1c88b0181 100644 --- a/ethereal/ui/ui_lib.go +++ b/ethereal/ui/ui_lib.go @@ -135,7 +135,7 @@ func (ui *UiLib) DebugTx(recipient, valueStr, gasStr, gasPriceStr, data string) for _, str := range dis { ui.win.Root().Call("setAsm", str) } - callerTx := ethchain.NewContractCreationTx(ethutil.Big(valueStr), ethutil.Big(gasStr), ethutil.Big(gasPriceStr), callerScript, nil) + callerTx := ethchain.NewContractCreationTx(ethutil.Big(valueStr), ethutil.Big(gasStr), ethutil.Big(gasPriceStr), nil) // Contract addr as test address keyPair := ethutil.GetKeyRing().Get(0) |