diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-03-21 14:08:36 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-03-21 14:08:36 +0200 |
commit | 9d157b519de6e2d73b1c695c6e6d22ecea37d365 (patch) | |
tree | 5399dda6531da2b36773e447a006c7d334ef3e58 /src/wallet/wallet2.h | |
parent | Merge pull request #1902 (diff) | |
parent | wallet2: speed up transactions using remote nodes (diff) | |
download | monero-9d157b519de6e2d73b1c695c6e6d22ecea37d365.tar.xz |
Merge pull request #1899
c1e9ccc7 wallet2: speed up transactions using remote nodes (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.h')
-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 5c8d0ae86..fbff94c50 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -633,6 +633,8 @@ namespace tools void get_outs(std::vector<std::vector<get_outs_entry>> &outs, const std::list<size_t> &selected_transfers, size_t fake_outputs_count); bool wallet_generate_key_image_helper(const cryptonote::account_keys& ack, const crypto::public_key& tx_public_key, size_t real_output_index, cryptonote::keypair& in_ephemeral, crypto::key_image& ki); crypto::public_key get_tx_pub_key_from_received_outs(const tools::wallet2::transfer_details &td) const; + bool should_pick_a_second_output(bool use_rct, size_t n_transfers, const std::vector<size_t> &unused_transfers_indices, const std::vector<size_t> &unused_dust_indices) const; + std::vector<size_t> get_only_rct(const std::vector<size_t> &unused_dust_indices, const std::vector<size_t> &unused_transfers_indices) const; cryptonote::account_base m_account; boost::optional<epee::net_utils::http::login> m_daemon_login; |