diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index bdf36d6a..70028747 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -1771,7 +1771,7 @@ bool simple_wallet::transfer_so(const std::vector &args) return true; } - std::vector outs_idxs; + std::vector outs_idxs; std::string outs_str = args[0]; while (!outs_str.empty()) { @@ -1818,7 +1818,7 @@ bool simple_wallet::transfer_so(const std::vector &args) m_wallet->set_tids_to_be_only_used_in_the_next_transfer(outs_idxs); auto slh = epee::misc_utils::create_scope_leave_handler([&](){ - m_wallet->set_tids_to_be_only_used_in_the_next_transfer(std::vector()); // reset + m_wallet->set_tids_to_be_only_used_in_the_next_transfer(std::vector()); // reset }); transfer_impl(args_copy, fee);