diff options
author | obscuren <geffobscura@gmail.com> | 2014-05-29 18:14:25 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-05-29 18:14:25 +0800 |
commit | 8ee6574d12601df7a8edb56ee9ccc4cfce7ef6a8 (patch) | |
tree | 244281b37a7a2860c227f8fd247966898fc65b8a /ethereal/assets/qml/wallet.qml | |
parent | efb3ee044b6bc05b73794450ec4b1953fe38350a (diff) | |
download | dexon-8ee6574d12601df7a8edb56ee9ccc4cfce7ef6a8.tar.gz dexon-8ee6574d12601df7a8edb56ee9ccc4cfce7ef6a8.tar.zst dexon-8ee6574d12601df7a8edb56ee9ccc4cfce7ef6a8.zip |
Minimal fee for sending transactions
Diffstat (limited to 'ethereal/assets/qml/wallet.qml')
-rw-r--r-- | ethereal/assets/qml/wallet.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index 98cccd767..f48b9a85b 100644 --- a/ethereal/assets/qml/wallet.qml +++ b/ethereal/assets/qml/wallet.qml @@ -976,7 +976,7 @@ ApplicationWindow { text: "Send" onClicked: { //this.enabled = false - var res = eth.transact(txSimpleRecipient.text, txSimpleValue.text,"","","") + var res = eth.transact(txSimpleRecipient.text, txSimpleValue.text, "500", "1000000", "") if(res[1]) { txSimpleResult.text = "There has been an error broadcasting your transaction:" + res[1].error() } else { |