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/cryptonote_core/blockchain.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/cryptonote_core/blockchain.h')
-rw-r--r-- | src/cryptonote_core/blockchain.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cryptonote_core/blockchain.h b/src/cryptonote_core/blockchain.h index 877828f81..4547ede30 100644 --- a/src/cryptonote_core/blockchain.h +++ b/src/cryptonote_core/blockchain.h @@ -516,10 +516,12 @@ namespace cryptonote * * @param tx_id the hash of the transaction to fetch indices for * @param indexs return-by-reference the global indices for the transaction's outputs + * @param n_txes how many txes in a row to get results for * * @return false if the transaction does not exist, or if no indices are found, otherwise true */ bool get_tx_outputs_gindexs(const crypto::hash& tx_id, std::vector<uint64_t>& indexs) const; + bool get_tx_outputs_gindexs(const crypto::hash& tx_id, size_t n_txes, std::vector<std::vector<uint64_t>>& indexs) const; /** * @brief stores the blockchain |