diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-10-18 12:21:11 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-10-18 12:21:11 +0200 |
commit | 0a41b03fc7528a7f8446c7d571df4228976d1d29 (patch) | |
tree | 13a382d23d674b33a2375dacb5c6c824b49ddef8 /src/blockchain_db/blockchain_db.h | |
parent | Merge pull request #1203 (diff) | |
parent | wallet: select part of the fake outs from recent outputs (diff) | |
download | monero-0a41b03fc7528a7f8446c7d571df4228976d1d29.tar.xz |
Merge pull request #1082
88faec7 wallet: select part of the fake outs from recent outputs (moneromooo-monero)
Diffstat (limited to 'src/blockchain_db/blockchain_db.h')
-rw-r--r-- | src/blockchain_db/blockchain_db.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/blockchain_db/blockchain_db.h b/src/blockchain_db/blockchain_db.h index 5b6a793d8..91c388de6 100644 --- a/src/blockchain_db/blockchain_db.h +++ b/src/blockchain_db/blockchain_db.h @@ -1309,10 +1309,11 @@ public: * * @param amounts optional set of amounts to lookup * @param unlocked whether to restrict count to unlocked outputs + * @param recent_cutoff timestamp to determine whether an output is recent * * @return a set of amount/instances */ - virtual std::map<uint64_t, uint64_t> get_output_histogram(const std::vector<uint64_t> &amounts, bool unlocked) const = 0; + virtual std::map<uint64_t, std::tuple<uint64_t, uint64_t, uint64_t>> get_output_histogram(const std::vector<uint64_t> &amounts, bool unlocked, uint64_t recent_cutoff) const = 0; /** * @brief is BlockchainDB in read-only mode? |