aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo.monero <moneromooo.monero@users.noreply.github.com>2016-11-18 19:17:13 +0000
committermoneromooo.monero <moneromooo.monero@users.noreply.github.com>2016-11-18 19:17:13 +0000
commite6e7a08c8777d8796f2fb9df7855cb945cc05ba3 (patch)
treee7a62190a3be8b61ecea32150f0b1becf46e9618
parentc83336cc4714215725cba957d8ea164a57c33987 (diff)
downloadmonzero-gui-e6e7a08c8777d8796f2fb9df7855cb945cc05ba3.tar.gz
monzero-gui-e6e7a08c8777d8796f2fb9df7855cb945cc05ba3.tar.xz
monzero-gui-e6e7a08c8777d8796f2fb9df7855cb945cc05ba3.zip
Fix mixin being wrong in sweep all transactions
-rw-r--r--main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.qml b/main.qml
index c09f0c3c..7e84b4af 100644
--- a/main.qml
+++ b/main.qml
@@ -448,7 +448,7 @@ ApplicationWindow {
}
if (amount === "(all)")
- currentWallet.createTransactionAllAsync(address, paymentId, amountxmr, mixinCount, priority);
+ currentWallet.createTransactionAllAsync(address, paymentId, mixinCount, priority);
else
currentWallet.createTransactionAsync(address, paymentId, amountxmr, mixinCount, priority);
}