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/cryptonote_core/blockchain.cpp | |
| parent | 34fcfcd7ccc0a7943e832ec0c59382b5cbc85307 (diff) | |
| parent | 88faec75fe768a5702c3f8d9384c0913e4af22aa (diff) | |
| download | monzero-core-0a41b03fc7528a7f8446c7d571df4228976d1d29.tar.gz monzero-core-0a41b03fc7528a7f8446c7d571df4228976d1d29.tar.xz monzero-core-0a41b03fc7528a7f8446c7d571df4228976d1d29.zip | |
Merge pull request #1082
88faec7 wallet: select part of the fake outs from recent outputs (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/blockchain.cpp')
| -rw-r--r-- | src/cryptonote_core/blockchain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index 9d2bf9332..9ea023a4c 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -3757,9 +3757,9 @@ bool Blockchain::get_hard_fork_voting_info(uint8_t version, uint32_t &window, ui return m_hardfork->get_voting_info(version, window, votes, threshold, earliest_height, voting); } -std::map<uint64_t, uint64_t> Blockchain:: get_output_histogram(const std::vector<uint64_t> &amounts, bool unlocked) const +std::map<uint64_t, std::tuple<uint64_t, uint64_t, uint64_t>> Blockchain:: get_output_histogram(const std::vector<uint64_t> &amounts, bool unlocked, uint64_t recent_cutoff) const { - return m_db->get_output_histogram(amounts, unlocked); + return m_db->get_output_histogram(amounts, unlocked, recent_cutoff); } #if defined(PER_BLOCK_CHECKPOINT) |
