diff options
| author | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-18 19:17:13 +0000 |
|---|---|---|
| committer | moneromooo.monero <moneromooo.monero@users.noreply.github.com> | 2016-11-18 19:17:13 +0000 |
| commit | e6e7a08c8777d8796f2fb9df7855cb945cc05ba3 (patch) | |
| tree | e7a62190a3be8b61ecea32150f0b1becf46e9618 | |
| parent | c83336cc4714215725cba957d8ea164a57c33987 (diff) | |
| download | monzero-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.qml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |
