diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-12-16 13:28:49 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-12-18 11:55:21 +0000 |
commit | 008647d7eb8f0bd72f7a9f8a49fe611fc4d5e0fe (patch) | |
tree | f8e058256c82ff9606e8eddbf71a9ae41cb1139f /src/blockchain_db/blockchain_db.h | |
parent | Merge pull request #4927 (diff) | |
download | monero-008647d7eb8f0bd72f7a9f8a49fe611fc4d5e0fe.tar.xz |
blockchain_db: speedup tx output gathering
We know all the data we'll want for getblocks.bin is contiguous
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 f13aa0cae..b92b0b076 100644 --- a/src/blockchain_db/blockchain_db.h +++ b/src/blockchain_db/blockchain_db.h @@ -1329,10 +1329,11 @@ public: * If an output cannot be found, the subclass should throw OUTPUT_DNE. * * @param tx_id a transaction ID + * @param n_txes how many txes to get data for, starting with tx_id * * @return a list of amount-specific output indices */ - virtual std::vector<uint64_t> get_tx_amount_output_indices(const uint64_t tx_id) const = 0; + virtual std::vector<std::vector<uint64_t>> get_tx_amount_output_indices(const uint64_t tx_id, size_t n_txes = 1) const = 0; /** * @brief check if a key image is stored as spent |