diff options
author | Maran <maran.hidskes@gmail.com> | 2014-06-25 22:12:53 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-06-25 22:12:53 +0800 |
commit | 9654b809120d1cc3c53ffe268fe47869ef0dc0a8 (patch) | |
tree | 3c81bc1f9ca44d4d27bcee3e6c34d05614c6c3ce /ethereal/assets/qml | |
parent | 1e965cb8f5c63d73a5aac1556a2638345ba2824c (diff) | |
download | go-tangerine-9654b809120d1cc3c53ffe268fe47869ef0dc0a8.tar go-tangerine-9654b809120d1cc3c53ffe268fe47869ef0dc0a8.tar.gz go-tangerine-9654b809120d1cc3c53ffe268fe47869ef0dc0a8.tar.bz2 go-tangerine-9654b809120d1cc3c53ffe268fe47869ef0dc0a8.tar.lz go-tangerine-9654b809120d1cc3c53ffe268fe47869ef0dc0a8.tar.xz go-tangerine-9654b809120d1cc3c53ffe268fe47869ef0dc0a8.tar.zst go-tangerine-9654b809120d1cc3c53ffe268fe47869ef0dc0a8.zip |
Implemented TX History for ethjs
Diffstat (limited to 'ethereal/assets/qml')
-rw-r--r-- | ethereal/assets/qml/webapp.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ethereal/assets/qml/webapp.qml b/ethereal/assets/qml/webapp.qml index 4a5a1293a..63927f0eb 100644 --- a/ethereal/assets/qml/webapp.qml +++ b/ethereal/assets/qml/webapp.qml @@ -103,6 +103,12 @@ ApplicationWindow { postData(data._seed,stateObject) break + case "getTransactionsFor": + require(1); + var txs = eth.getTransactionsFor(data.args[0], true) + postData(data._seed, txs) + + break case "getBalance": require(1); |