aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/qml/views/transaction.qml
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-08-15 19:16:07 +0800
committerobscuren <geffobscura@gmail.com>2014-08-15 19:16:07 +0800
commita6c4543c575b52b943ff54f74c9d650d73175fe0 (patch)
tree23473e3076be6b394db680a5149cb8006f00a9db /ethereal/assets/qml/views/transaction.qml
parentc362172567e7bd499ea0d0bcf84c54a9b7788614 (diff)
downloadgo-tangerine-a6c4543c575b52b943ff54f74c9d650d73175fe0.tar
go-tangerine-a6c4543c575b52b943ff54f74c9d650d73175fe0.tar.gz
go-tangerine-a6c4543c575b52b943ff54f74c9d650d73175fe0.tar.bz2
go-tangerine-a6c4543c575b52b943ff54f74c9d650d73175fe0.tar.lz
go-tangerine-a6c4543c575b52b943ff54f74c9d650d73175fe0.tar.xz
go-tangerine-a6c4543c575b52b943ff54f74c9d650d73175fe0.tar.zst
go-tangerine-a6c4543c575b52b943ff54f74c9d650d73175fe0.zip
Moving over to ethpipe
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()