aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_rpc_server.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2017-11-15 16:56:17 +0200
committerRiccardo Spagni <ric@spagni.net>2017-11-15 16:56:18 +0200
commitdc6a8014bdbde26468751b89a289d45b73095e51 (patch)
tree47fb912cb15dcb2828c693188254c6571bbf6e80 /src/wallet/wallet_rpc_server.cpp
parentMerge pull request #2778 (diff)
parentsimplewallet: wrong ns for input_line in sweep_single (fix #2634) (diff)
downloadmonero-dc6a8014bdbde26468751b89a289d45b73095e51.tar.xz
Merge pull request #2818
c4587e83 simplewallet: wrong ns for input_line in sweep_single (fix #2634) (stoffu)
Diffstat (limited to '')
-rw-r--r--src/wallet/wallet_rpc_server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp
index 09ed205c6..f5838d013 100644
--- a/src/wallet/wallet_rpc_server.cpp
+++ b/src/wallet/wallet_rpc_server.cpp
@@ -846,7 +846,7 @@ namespace tools
try
{
- uint64_t mixin = adjust_mixin(req.mixin);
+ uint64_t mixin = m_wallet->adjust_mixin(req.mixin);
std::vector<wallet2::pending_tx> ptx_vector = m_wallet->create_transactions_single(ki, dsts[0].addr, dsts[0].is_subaddress, mixin, req.unlock_time, req.priority, extra, m_trusted_daemon);
if (ptx_vector.empty())