|
|
|
@ -20,10 +20,9 @@ Rectangle { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function setBalance() { |
|
|
|
|
//balance.text = "<b>Balance</b>: " + eth.numberToHuman(eth.balanceAt(eth.key().address)) |
|
|
|
|
balance.text = "<b>Balance</b>: " + eth.numberToHuman(eth.balanceAt(eth.coinbase())) |
|
|
|
|
if(menuItem) |
|
|
|
|
menuItem.secondaryTitle = eth.numberToHuman("0") |
|
|
|
|
//menuItem.secondaryTitle = eth.numberToHuman(eth.balanceAt(eth.key().address)) |
|
|
|
|
menuItem.secondaryTitle = eth.numberToHuman(eth.balanceAt(eth.coinbase())) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ListModel { |
|
|
|
@ -131,7 +130,7 @@ Rectangle { |
|
|
|
|
onClicked: { |
|
|
|
|
var value = txValue.text + denomModel.get(valueDenom.currentIndex).zeros; |
|
|
|
|
var gasPrice = "10000000000000" |
|
|
|
|
//var res = eth.transact({from: eth.key().privateKey, to: txTo.text, value: value, gas: "500", gasPrice: gasPrice}) |
|
|
|
|
var res = eth.transact({from: eth.coinbase(), to: txTo.text, value: value, gas: "500", gasPrice: gasPrice}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|