diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-03-26 21:15:47 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-03-26 21:15:47 +0000 |
commit | 12146daeed66fc30319c481a378c8d317b49b4db (patch) | |
tree | d46f0ed40f4d91c68c5ffdf61aee662c06f562fb /src/wallet/wallet_rpc_server.cpp | |
parent | New RPC and daemon command to get output histogram (diff) | |
download | monero-12146daeed66fc30319c481a378c8d317b49b4db.tar.xz |
wallet: change sweep_dust to sweep_unmixable
With the change in mixin rules for v2, the "annoying" outputs are
slightly changed. There is high correlation between dust and
unmixable, but no equivalence.
Diffstat (limited to 'src/wallet/wallet_rpc_server.cpp')
-rw-r--r-- | src/wallet/wallet_rpc_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp index 418de327c..83e1f7535 100644 --- a/src/wallet/wallet_rpc_server.cpp +++ b/src/wallet/wallet_rpc_server.cpp @@ -347,7 +347,7 @@ namespace tools try { - std::vector<wallet2::pending_tx> ptx_vector = m_wallet.create_dust_sweep_transactions(); + std::vector<wallet2::pending_tx> ptx_vector = m_wallet.create_unmixable_sweep_transactions(); m_wallet.commit_tx(ptx_vector); |