mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-05 07:42:57 +00:00
Minimal fee for sending transactions
This commit is contained in:
parent
efb3ee044b
commit
8ee6574d12
1 changed files with 1 additions and 1 deletions
|
|
@ -976,7 +976,7 @@ ApplicationWindow {
|
||||||
text: "Send"
|
text: "Send"
|
||||||
onClicked: {
|
onClicked: {
|
||||||
//this.enabled = false
|
//this.enabled = false
|
||||||
var res = eth.transact(txSimpleRecipient.text, txSimpleValue.text,"","","")
|
var res = eth.transact(txSimpleRecipient.text, txSimpleValue.text, "500", "1000000", "")
|
||||||
if(res[1]) {
|
if(res[1]) {
|
||||||
txSimpleResult.text = "There has been an error broadcasting your transaction:" + res[1].error()
|
txSimpleResult.text = "There has been an error broadcasting your transaction:" + res[1].error()
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue