diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-02-11 00:22:17 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-02-11 00:22:17 +0200 |
commit | 92969600811484c46edab4a85576265a8737e092 (patch) | |
tree | 5a1174eb575497a46efe42970c0e3ff26dbd3ad0 /src/wallet/wallet2.h | |
parent | Merge pull request #1685 (diff) | |
parent | wallet2: fix transactions not considering rct inputs (diff) | |
download | monero-92969600811484c46edab4a85576265a8737e092.tar.xz |
Merge pull request #1686
bceaf4b7 wallet2: fix transactions not considering rct inputs (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.h')
-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 839295b5e..9b68acc98 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -534,7 +534,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); |