diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-04-16 17:46:01 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-04-24 19:50:37 +0100 |
commit | 6df83b3efb31337ba832697783f6c6940b4fec6b (patch) | |
tree | 640b13e0e4615e485ae7f3faaf374ed8157fa61b /src/wallet/api | |
parent | Merge pull request #1996 (diff) | |
download | monero-6df83b3efb31337ba832697783f6c6940b4fec6b.tar.xz |
wallet: add sweep_below function
It sweeps all outputs below the given threshold
This is available via the existing sweep_all RPC, by setting
amount_threshold the desired amount (in atomic units)
Diffstat (limited to 'src/wallet/api')
-rw-r--r-- | src/wallet/api/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index fc2d6e755..21760ac49 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -952,7 +952,7 @@ PendingTransaction *WalletImpl::createTransaction(const string &dst_addr, const static_cast<uint32_t>(priority), extra, m_trustedDaemon); } else { - transaction->m_pending_tx = m_wallet->create_transactions_all(addr, fake_outs_count, 0 /* unlock_time */, + transaction->m_pending_tx = m_wallet->create_transactions_all(0, addr, fake_outs_count, 0 /* unlock_time */, static_cast<uint32_t>(priority), extra, m_trustedDaemon); } |