diff options
author | obscuren <geffobscura@gmail.com> | 2014-04-30 20:42:57 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-04-30 20:42:57 +0800 |
commit | 183dbcc6a0e56bf46f6406d47134f3b88eb5eef1 (patch) | |
tree | 7071909a608c3fe63f8db57a59ebeacd5790009c /ethereal/assets/qml/webapp.qml | |
parent | e85d5dd428c71dd45060082a9af28a40a68a25e4 (diff) | |
download | dexon-183dbcc6a0e56bf46f6406d47134f3b88eb5eef1.tar dexon-183dbcc6a0e56bf46f6406d47134f3b88eb5eef1.tar.gz dexon-183dbcc6a0e56bf46f6406d47134f3b88eb5eef1.tar.bz2 dexon-183dbcc6a0e56bf46f6406d47134f3b88eb5eef1.tar.lz dexon-183dbcc6a0e56bf46f6406d47134f3b88eb5eef1.tar.xz dexon-183dbcc6a0e56bf46f6406d47134f3b88eb5eef1.tar.zst dexon-183dbcc6a0e56bf46f6406d47134f3b88eb5eef1.zip |
fixed state object changes for eth api
Diffstat (limited to 'ethereal/assets/qml/webapp.qml')
-rw-r--r-- | ethereal/assets/qml/webapp.qml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ethereal/assets/qml/webapp.qml b/ethereal/assets/qml/webapp.qml index eebe8921f..2f3fef4d2 100644 --- a/ethereal/assets/qml/webapp.qml +++ b/ethereal/assets/qml/webapp.qml @@ -58,8 +58,7 @@ ApplicationWindow { case "transact": require(5) - // TODO this will change to 6 soon with sec being teh first argument - var tx = eth.transact(data.args[0], data.args[1],data.args[2],data.args[3],data.args[4]) + var tx = eth.transact(data.args[0], data.args[1], data.args[2],data.args[3],data.args[4],data.args[5]) postData(data._seed, tx) break case "create": @@ -116,7 +115,7 @@ ApplicationWindow { postEvent("block:new", block) } function onObjectChangeCb(stateObject) { - postEvent("object:change", stateObject) + postEvent("object:"+stateObject.address(), stateObject) } } |