diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-07 21:13:00 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-26 18:56:23 +0000 |
commit | fc98f7a0a13c1246b67ed4d7fb40705bb68a8b93 (patch) | |
tree | cca519bb22accb219b7aa41b631fd46e6f2cffce /src/blockchain_db/lmdb/db_lmdb.h | |
parent | Merge pull request #4824 (diff) | |
download | monero-fc98f7a0a13c1246b67ed4d7fb40705bb68a8b93.tar.xz |
rpc: speedup get_outs.bin
Diffstat (limited to '')
-rw-r--r-- | src/blockchain_db/lmdb/db_lmdb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blockchain_db/lmdb/db_lmdb.h b/src/blockchain_db/lmdb/db_lmdb.h index 7e76236a5..26159ab4d 100644 --- a/src/blockchain_db/lmdb/db_lmdb.h +++ b/src/blockchain_db/lmdb/db_lmdb.h @@ -243,7 +243,7 @@ public: virtual uint64_t get_num_outputs(const uint64_t& amount) const; virtual output_data_t get_output_key(const uint64_t& amount, const uint64_t& index); - virtual void get_output_key(const uint64_t &amount, const std::vector<uint64_t> &offsets, std::vector<output_data_t> &outputs, bool allow_partial = false); + virtual void get_output_key(const epee::span<const uint64_t> &amounts, const std::vector<uint64_t> &offsets, std::vector<output_data_t> &outputs, bool allow_partial = false); virtual tx_out_index get_output_tx_and_index_from_global(const uint64_t& index) const; virtual void get_output_tx_and_index_from_global(const std::vector<uint64_t> &global_indices, |