aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/qml_container.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-07-24 20:16:25 +0800
committerobscuren <geffobscura@gmail.com>2014-07-24 20:16:25 +0800
commit0ca776a6b80097e34006f26fd934ed5f388e68f8 (patch)
tree1141beffce619b3fb11676019385312d92b27c00 /ethereal/qml_container.go
parente7a80ec68165755678647f2d3e9b475d492a70dd (diff)
parent2e39efbe7c487fd605de0f6915bcae789138fb7e (diff)
downloadgo-tangerine-0ca776a6b80097e34006f26fd934ed5f388e68f8.tar
go-tangerine-0ca776a6b80097e34006f26fd934ed5f388e68f8.tar.gz
go-tangerine-0ca776a6b80097e34006f26fd934ed5f388e68f8.tar.bz2
go-tangerine-0ca776a6b80097e34006f26fd934ed5f388e68f8.tar.lz
go-tangerine-0ca776a6b80097e34006f26fd934ed5f388e68f8.tar.xz
go-tangerine-0ca776a6b80097e34006f26fd934ed5f388e68f8.tar.zst
go-tangerine-0ca776a6b80097e34006f26fd934ed5f388e68f8.zip
Merge branch 'feature/new_vm' into develop
Diffstat (limited to 'ethereal/qml_container.go')
-rw-r--r--ethereal/qml_container.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/ethereal/qml_container.go b/ethereal/qml_container.go
index cb43a99bd..1b420ee21 100644
--- a/ethereal/qml_container.go
+++ b/ethereal/qml_container.go
@@ -3,6 +3,7 @@ package main
import (
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethpub"
+ "github.com/ethereum/eth-go/ethstate"
"github.com/ethereum/eth-go/ethutil"
"github.com/go-qml/qml"
"runtime"
@@ -50,11 +51,11 @@ func (app *QmlApplication) NewBlock(block *ethchain.Block) {
app.win.Call("onNewBlockCb", pblock)
}
-func (app *QmlApplication) ObjectChanged(stateObject *ethchain.StateObject) {
+func (app *QmlApplication) ObjectChanged(stateObject *ethstate.StateObject) {
app.win.Call("onObjectChangeCb", ethpub.NewPStateObject(stateObject))
}
-func (app *QmlApplication) StorageChanged(storageObject *ethchain.StorageState) {
+func (app *QmlApplication) StorageChanged(storageObject *ethstate.StorageState) {
app.win.Call("onStorageChangeCb", ethpub.NewPStorageState(storageObject))
}