Minor fixes that to reflect changes in library

This commit is contained in:
obscuren
2014-02-24 13:51:16 +01:00
parent 0656f465b0
commit fe9eb47288
4 changed files with 30 additions and 13 deletions

View File

@@ -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) {