diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-21 09:56:32 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-28 21:30:34 +0100 |
commit | b951bc8780f9a11ccf8dbc1ee89c2aa550bad101 (patch) | |
tree | fd1e223d6968115175e2d563dd6e4c9edc4df464 /src/wallet/wallet2.h | |
parent | increase minimum mixin to 4 on hard fork 5 (diff) | |
download | monero-b951bc8780f9a11ccf8dbc1ee89c2aa550bad101.tar.xz |
wallet: transfer_selected_rct now also selects fake outs
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 259f7aca7..0e87614b4 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -463,6 +463,8 @@ namespace tools std::vector<size_t> pick_prefered_rct_inputs(uint64_t needed_money) const; void set_spent(transfer_details &td, uint64_t height); void set_unspent(transfer_details &td); + template<typename entry> + void get_outs(std::vector<std::vector<entry>> &outs, const std::list<transfer_container::iterator> &selected_transfers, size_t fake_outputs_count); cryptonote::account_base m_account; std::string m_daemon_address; |