From e6e7a08c8777d8796f2fb9df7855cb945cc05ba3 Mon Sep 17 00:00:00 2001 From: "moneromooo.monero" Date: Fri, 18 Nov 2016 19:17:13 +0000 Subject: [PATCH] Fix mixin being wrong in sweep all transactions --- main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }