diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-01 17:24:35 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-04 13:23:05 +0000 |
commit | 5808530f54d2f24410b24089f6d30163aed71d7b (patch) | |
tree | 293f325ca06b0bd87b4199e40e33308167c6e01b /src/cryptonote_core/blockchain.h | |
parent | blockchain: don't run threads if we have just one function to run (diff) | |
download | monero-5808530f54d2f24410b24089f6d30163aed71d7b.tar.xz |
blockchain: remove unused output_scan_worker parameter
Diffstat (limited to 'src/cryptonote_core/blockchain.h')
-rw-r--r-- | src/cryptonote_core/blockchain.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/cryptonote_core/blockchain.h b/src/cryptonote_core/blockchain.h index 9639d4e7d..dfe833fb4 100644 --- a/src/cryptonote_core/blockchain.h +++ b/src/cryptonote_core/blockchain.h @@ -916,11 +916,9 @@ namespace cryptonote * @param amount the amount * @param offsets the indices (indexed to the amount) of the outputs * @param outputs return-by-reference the outputs collected - * @param txs unused, candidate for removal */ void output_scan_worker(const uint64_t amount,const std::vector<uint64_t> &offsets, - std::vector<output_data_t> &outputs, std::unordered_map<crypto::hash, - cryptonote::transaction> &txs) const; + std::vector<output_data_t> &outputs) const; /** * @brief computes the "short" and "long" hashes for a set of blocks |