diff options
author | obscuren <geffobscura@gmail.com> | 2014-08-15 19:16:07 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-08-15 19:16:07 +0800 |
commit | a6c4543c575b52b943ff54f74c9d650d73175fe0 (patch) | |
tree | 23473e3076be6b394db680a5149cb8006f00a9db /ethereal/html_container.go | |
parent | c362172567e7bd499ea0d0bcf84c54a9b7788614 (diff) | |
download | dexon-a6c4543c575b52b943ff54f74c9d650d73175fe0.tar dexon-a6c4543c575b52b943ff54f74c9d650d73175fe0.tar.gz dexon-a6c4543c575b52b943ff54f74c9d650d73175fe0.tar.bz2 dexon-a6c4543c575b52b943ff54f74c9d650d73175fe0.tar.lz dexon-a6c4543c575b52b943ff54f74c9d650d73175fe0.tar.xz dexon-a6c4543c575b52b943ff54f74c9d650d73175fe0.tar.zst dexon-a6c4543c575b52b943ff54f74c9d650d73175fe0.zip |
Moving over to ethpipe
Diffstat (limited to 'ethereal/html_container.go')
-rw-r--r-- | ethereal/html_container.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ethereal/html_container.go b/ethereal/html_container.go index 7deee487d..bbf77402e 100644 --- a/ethereal/html_container.go +++ b/ethereal/html_container.go @@ -125,14 +125,6 @@ func (app *HtmlApplication) NewBlock(block *ethchain.Block) { app.webView.Call("onNewBlockCb", b) } -func (app *HtmlApplication) ObjectChanged(stateObject *ethstate.StateObject) { - app.webView.Call("onObjectChangeCb", ethpub.NewPStateObject(stateObject)) -} - -func (app *HtmlApplication) StorageChanged(storageObject *ethstate.StorageState) { - app.webView.Call("onStorageChangeCb", ethpub.NewPStorageState(storageObject)) -} - func (self *HtmlApplication) Messages(messages ethstate.Messages, id string) { var msgs []javascript.JSMessage for _, m := range messages { |