From 8ee6574d12601df7a8edb56ee9ccc4cfce7ef6a8 Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 29 May 2014 12:14:25 +0200 Subject: [PATCH] Minimal fee for sending transactions --- ethereal/assets/qml/wallet.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml index 98cccd7679..f48b9a85bf 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 {