diff options
author | Maran <maran.hidskes@gmail.com> | 2014-05-05 20:17:20 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-05-05 20:17:20 +0800 |
commit | cb9ca992debfcef83f79b2c606955e6688880694 (patch) | |
tree | 91133b39f56ab5292a538a353ab3c55c3b951383 /ethereal/ui/html_container.go | |
parent | e94e5ac75dbbc4ec52228ae11377a4fa71ab95ab (diff) | |
parent | 91824af46b59b7af84c7591236fe8b34b667ddb8 (diff) | |
download | go-tangerine-cb9ca992debfcef83f79b2c606955e6688880694.tar go-tangerine-cb9ca992debfcef83f79b2c606955e6688880694.tar.gz go-tangerine-cb9ca992debfcef83f79b2c606955e6688880694.tar.bz2 go-tangerine-cb9ca992debfcef83f79b2c606955e6688880694.tar.lz go-tangerine-cb9ca992debfcef83f79b2c606955e6688880694.tar.xz go-tangerine-cb9ca992debfcef83f79b2c606955e6688880694.tar.zst go-tangerine-cb9ca992debfcef83f79b2c606955e6688880694.zip |
Merge branch 'develop' into feature/rpc
Diffstat (limited to 'ethereal/ui/html_container.go')
-rw-r--r-- | ethereal/ui/html_container.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ethereal/ui/html_container.go b/ethereal/ui/html_container.go index e3e48bfcc..4f12aaaf6 100644 --- a/ethereal/ui/html_container.go +++ b/ethereal/ui/html_container.go @@ -6,7 +6,6 @@ import ( "github.com/ethereum/eth-go/ethpub" "github.com/ethereum/eth-go/ethutil" "github.com/go-qml/qml" - "math/big" "path/filepath" ) @@ -65,8 +64,8 @@ func (app *HtmlApplication) ObjectChanged(stateObject *ethchain.StateObject) { app.webView.Call("onObjectChangeCb", ethpub.NewPStateObject(stateObject)) } -func (app *HtmlApplication) StorageChanged(stateObject *ethchain.StateObject, addr []byte, value *big.Int) { - app.webView.Call("onStorageChangeCb", nil) +func (app *HtmlApplication) StorageChanged(storageObject *ethchain.StorageState) { + app.webView.Call("onStorageChangeCb", ethpub.NewPStorageState(storageObject)) } func (app *HtmlApplication) Destroy() { |