diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-10 07:57:10 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-10 07:57:10 +0800 |
commit | 1471585af082632b33eae5bf489d0ae0b277b369 (patch) | |
tree | e384ca2962012872d4cdaf3f2108c2eab8cd7ef9 /ethereal/ui | |
parent | 0bf2d24cb030ec53abedf483189ecbaa3c9676be (diff) | |
download | go-tangerine-1471585af082632b33eae5bf489d0ae0b277b369.tar go-tangerine-1471585af082632b33eae5bf489d0ae0b277b369.tar.gz go-tangerine-1471585af082632b33eae5bf489d0ae0b277b369.tar.bz2 go-tangerine-1471585af082632b33eae5bf489d0ae0b277b369.tar.lz go-tangerine-1471585af082632b33eae5bf489d0ae0b277b369.tar.xz go-tangerine-1471585af082632b33eae5bf489d0ae0b277b369.tar.zst go-tangerine-1471585af082632b33eae5bf489d0ae0b277b369.zip |
Moved Ext app js to its own dir
Diffstat (limited to 'ethereal/ui')
-rw-r--r-- | ethereal/ui/gui.go | 7 | ||||
-rw-r--r-- | ethereal/ui/ui_lib.go | 10 |
2 files changed, 6 insertions, 11 deletions
diff --git a/ethereal/ui/gui.go b/ethereal/ui/gui.go index 39da5f246..25f6e2fed 100644 --- a/ethereal/ui/gui.go +++ b/ethereal/ui/gui.go @@ -9,6 +9,7 @@ import ( "github.com/ethereum/eth-go/ethpub" "github.com/ethereum/eth-go/ethutil" "github.com/go-qml/qml" + "github.com/obscuren/mutan" "math/big" "strings" ) @@ -220,5 +221,9 @@ func (gui *Gui) Transact(recipient, value, gas, gasPrice, data string) (*ethpub. } func (gui *Gui) Create(recipient, value, gas, gasPrice, data string) (*ethpub.PReceipt, error) { - return gui.Transact(recipient, value, gas, gasPrice, data) + keyPair := ethutil.Config.Db.GetKeys()[0] + + mainInput, initInput := mutan.PreProcess(data) + + return gui.pub.Create(ethutil.Hex(keyPair.PrivateKey), value, gas, gasPrice, initInput, mainInput) } diff --git a/ethereal/ui/ui_lib.go b/ethereal/ui/ui_lib.go index 7fe610c6a..35ceb7d79 100644 --- a/ethereal/ui/ui_lib.go +++ b/ethereal/ui/ui_lib.go @@ -59,14 +59,6 @@ func (ui *UiLib) OpenHtml(path string) { go app.run() } -func (ui *UiLib) Watch(addr, storageAddr string) { - if len(storageAddr) == 0 { - ui.eth.Reactor().Subscribe("storage:"+string(ethutil.FromHex(addr))+":"+string(ethutil.FromHex(storageAddr)), nil) - } else { - ui.eth.Reactor().Subscribe("object:"+string(ethutil.FromHex(addr)), nil) - } -} - func (ui *UiLib) Muted(content string) { component, err := ui.engine.LoadFile(ui.AssetPath("qml/muted.qml")) if err != nil { @@ -78,8 +70,6 @@ func (ui *UiLib) Muted(content string) { go func() { path := "file://" + ui.AssetPath("muted/index.html") win.Set("url", path) - //debuggerPath := "file://" + ui.AssetPath("muted/debugger.html") - //win.Set("debugUrl", debuggerPath) win.Show() win.Wait() |