diff options
author | Maran <maran.hidskes@gmail.com> | 2014-04-12 05:05:02 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-04-12 05:05:02 +0800 |
commit | ab8d96258ea11c828a149dde176fe8e2efce0294 (patch) | |
tree | cd810367355f4e4a9e77700ffe2b7358004788e2 /ethereal/assets/qml | |
parent | 3f82d5172f372b5f5d8d9ede4967c5d2b9867980 (diff) | |
download | dexon-ab8d96258ea11c828a149dde176fe8e2efce0294.tar.gz dexon-ab8d96258ea11c828a149dde176fe8e2efce0294.tar.zst dexon-ab8d96258ea11c828a149dde176fe8e2efce0294.zip |
Added isContract to gui
Diffstat (limited to 'ethereal/assets/qml')
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index 95512f661..0c8c91e13 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -140,6 +140,7 @@ ApplicationWindow { anchors.fill: parent TableViewColumn{ role: "value" ; title: "Value" ; width: 100 } TableViewColumn{ role: "address" ; title: "Address" ; width: 430 } + TableViewColumn{ role: "contract" ; title: "Contract" ; width: 100 } model: txModel } @@ -448,7 +449,13 @@ ApplicationWindow { } function addTx(tx) { - txModel.insert(0, {hash: tx.hash, address: tx.address, value: tx.value}) + var isContract + if (tx.contract == true){ + isContract = "Yes" + }else{ + isContract = "No" + } + txModel.insert(0, {hash: tx.hash, address: tx.address, value: tx.value, contract: isContract}) } function addBlock(block) { |