aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/qml/wallet.qml
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-03-31 06:22:50 +0800
committerobscuren <geffobscura@gmail.com>2014-03-31 06:22:50 +0800
commit97b98b1250890977ea622af378fe864e4620e313 (patch)
treef9a51c45028d227e7d5cec55d54927e18dab349a /ethereal/assets/qml/wallet.qml
parentebbc5e7cb8b3886c8557f9f8623113f52f7f5e4a (diff)
downloaddexon-97b98b1250890977ea622af378fe864e4620e313.tar.gz
dexon-97b98b1250890977ea622af378fe864e4620e313.tar.zst
dexon-97b98b1250890977ea622af378fe864e4620e313.zip
Fixed an issue with sending gas to a contract
Diffstat (limited to 'ethereal/assets/qml/wallet.qml')
-rw-r--r--ethereal/assets/qml/wallet.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/assets/qml/wallet.qml b/ethereal/assets/qml/wallet.qml
index f6b31f0fd..9093e3ca8 100644
--- a/ethereal/assets/qml/wallet.qml
+++ b/ethereal/assets/qml/wallet.qml
@@ -198,7 +198,7 @@ ApplicationWindow {
id: txButton
text: "Send"
onClicked: {
- this.enabled = false
+ //this.enabled = false
console.log(eth.createTx(txRecipient.text, txValue.text, txGas.text, txGasPrice.text, codeView.text))
}
}