aboutsummaryrefslogtreecommitdiffstats
path: root/wallet.qml
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-02-24 20:51:16 +0800
committerobscuren <geffobscura@gmail.com>2014-02-24 20:51:16 +0800
commitfe9eb472887baec464cc50657affd85b13bcbeba (patch)
tree07ac439393d244a45470ba86792ae9c159d9e11a /wallet.qml
parent0656f465b0c0690f237e42ac1e8f306dcda6c40b (diff)
downloadgo-tangerine-fe9eb472887baec464cc50657affd85b13bcbeba.tar.gz
go-tangerine-fe9eb472887baec464cc50657affd85b13bcbeba.tar.zst
go-tangerine-fe9eb472887baec464cc50657affd85b13bcbeba.zip
Minor fixes that to reflect changes in library
Diffstat (limited to 'wallet.qml')
-rw-r--r--wallet.qml7
1 files changed, 4 insertions, 3 deletions
diff --git a/wallet.qml b/wallet.qml
index 6ee6ff110..e7145cef3 100644
--- a/wallet.qml
+++ b/wallet.qml
@@ -23,7 +23,7 @@ ApplicationWindow {
Button {
text: "Send"
onClicked: {
- console.log(eth.createTx(txReceiver.text, txAmount.text))
+ console.log(eth.createTx(txReceiver.text, txAmount.text, codeView.text))
}
}
@@ -300,8 +300,9 @@ ApplicationWindow {
}
function addLog(str) {
- console.log(str)
- logModel.insert(0, {description: str})
+ if(str.len != 0) {
+ logModel.append({description: str})
+ }
}
function setPeers(text) {