diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-28 21:02:36 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-28 21:02:36 +0800 |
commit | 9a11a948943d285b22a3a5e508fadc0c346990f4 (patch) | |
tree | 29f9206297a5c098efa5383def749ac865978e96 /cmd/mist/html_container.go | |
parent | cbf162ca6467b91b897c94c3e2c2fd9769a3e9f0 (diff) | |
download | dexon-9a11a948943d285b22a3a5e508fadc0c346990f4.tar.gz dexon-9a11a948943d285b22a3a5e508fadc0c346990f4.tar.zst dexon-9a11a948943d285b22a3a5e508fadc0c346990f4.zip |
Updated assets & moved messages
Diffstat (limited to 'cmd/mist/html_container.go')
-rw-r--r-- | cmd/mist/html_container.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/mist/html_container.go b/cmd/mist/html_container.go index f2ba6fbe2..3e3613e9a 100644 --- a/cmd/mist/html_container.go +++ b/cmd/mist/html_container.go @@ -21,7 +21,6 @@ package main import ( - "encoding/json" "errors" "fmt" "io/ioutil" @@ -32,7 +31,6 @@ import ( "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/ethutil" - "github.com/ethereum/go-ethereum/javascript" "github.com/ethereum/go-ethereum/state" "github.com/ethereum/go-ethereum/xeth" "github.com/howeyc/fsnotify" @@ -147,6 +145,7 @@ func (app *HtmlApplication) NewBlock(block *types.Block) { } func (self *HtmlApplication) Messages(messages state.Messages, id string) { + /* TODO remove me var msgs []javascript.JSMessage for _, m := range messages { msgs = append(msgs, javascript.NewJSMessage(m)) @@ -155,6 +154,7 @@ func (self *HtmlApplication) Messages(messages state.Messages, id string) { b, _ := json.Marshal(msgs) self.webView.Call("onWatchedCb", string(b), id) + */ } func (app *HtmlApplication) Destroy() { |