diff options
| author | Ilya Kitaev <mbg033@gmail.com> | 2016-06-20 23:36:56 +0300 |
|---|---|---|
| committer | Ilya Kitaev <mbg033@gmail.com> | 2016-06-20 23:36:56 +0300 |
| commit | 2696e49a54c5ef028f7e4e74ffe3b18e205cd28f (patch) | |
| tree | 63fbb377e923d85d889eb26a93105549fc0ce49f /MiddlePanel.qml | |
| parent | e3985da4e1c95e21716fbee4824ba9ca471ef220 (diff) | |
| download | monzero-gui-2696e49a54c5ef028f7e4e74ffe3b18e205cd28f.tar.gz monzero-gui-2696e49a54c5ef028f7e4e74ffe3b18e205cd28f.tar.xz monzero-gui-2696e49a54c5ef028f7e4e74ffe3b18e205cd28f.zip | |
mixin count for Wallet::createTransaction
Diffstat (limited to 'MiddlePanel.qml')
| -rw-r--r-- | MiddlePanel.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MiddlePanel.qml b/MiddlePanel.qml index 28d6f137..edb4963d 100644 --- a/MiddlePanel.qml +++ b/MiddlePanel.qml @@ -30,7 +30,7 @@ import QtQuick 2.2 Rectangle { color: "#F0EEEE" - signal paymentClicked(string address, string paymentId, double amount, double fee, int privacyLevel) + signal paymentClicked(string address, string paymentId, double amount, int mixinCount) states: [ State { @@ -84,7 +84,7 @@ Rectangle { target: loader.item onPaymentClicked : { console.log("MiddlePanel: paymentClicked") - paymentClicked(address, paymentId, amount, fee, privacyLevel) + paymentClicked(address, paymentId, amount, mixinCount) } } |
