diff options
author | stoffu <stoffu@protonmail.ch> | 2017-11-15 20:37:18 +0900 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2017-11-15 20:45:58 +0900 |
commit | c4587e83f84fa0ecfcfa5c4538697ae96162afe2 (patch) | |
tree | 47fb912cb15dcb2828c693188254c6571bbf6e80 /src/wallet/wallet_rpc_server.cpp | |
parent | Merge pull request #2778 (diff) | |
download | monero-c4587e83f84fa0ecfcfa5c4538697ae96162afe2.tar.xz |
simplewallet: wrong ns for input_line in sweep_single (fix #2634)
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 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()) |