aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/qml/views/transaction.qml
diff options
context:
space:
mode:
Diffstat (limited to 'ethereal/assets/qml/views/transaction.qml')
-rw-r--r--ethereal/assets/qml/views/transaction.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereal/assets/qml/views/transaction.qml b/ethereal/assets/qml/views/transaction.qml
index 80e1670f8..ac38ebe0c 100644
--- a/ethereal/assets/qml/views/transaction.qml
+++ b/ethereal/assets/qml/views/transaction.qml
@@ -169,7 +169,7 @@ Rectangle {
onClicked: {
var value = txValue.text + denomModel.get(valueDenom.currentIndex).zeros;
var gasPrice = txGasPrice.text + denomModel.get(gasDenom.currentIndex).zeros;
- var res = gui.create(txFuelRecipient.text, value, txGas.text, gasPrice, codeView.text)
+ var res = gui.transact(txFuelRecipient.text, value, txGas.text, gasPrice, codeView.text)
if(res[1]) {
txResult.text = "Your contract <b>could not</b> be sent over the network:\n<b>"
txResult.text += res[1].error()