diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-05 21:30:14 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-06 20:20:22 +0000 |
commit | bceaf4b7883da1c2b247589466168f76b6a6423e (patch) | |
tree | 52e8a331e9f1737533c716559106a55997d9ffd9 /src/wallet/wallet2.h | |
parent | Merge pull request #1655 (diff) | |
download | monero-bceaf4b7883da1c2b247589466168f76b6a6423e.tar.xz |
wallet2: fix transactions not considering rct inputs
I broke this very recently in 2bf029be172a47ace8134143e1320fdb10d3ea44
and didn't notice in time
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 567292d30..1fb81bae6 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -533,7 +533,7 @@ namespace tools * \brief Calculates the approximate blockchain height from current date/time. */ uint64_t get_approximate_blockchain_height() const; - std::vector<size_t> select_available_outputs_from_histogram(uint64_t count, bool atleast, bool unlocked, bool trusted_daemon); + std::vector<size_t> select_available_outputs_from_histogram(uint64_t count, bool atleast, bool unlocked, bool allow_rct, bool trusted_daemon); std::vector<size_t> select_available_outputs(const std::function<bool(const transfer_details &td)> &f); std::vector<size_t> select_available_unmixable_outputs(bool trusted_daemon); std::vector<size_t> select_available_mixable_outputs(bool trusted_daemon); |