diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-03-31 13:32:55 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-03-31 13:32:55 -0500 |
commit | 096e2135ddebbcbaaa2d8b2362849da678d9a28c (patch) | |
tree | 302adcbd0460ffc68d560822899273133bc8342f /src/cryptonote_core/tx_pool.h | |
parent | Merge pull request #6407 (diff) | |
parent | protocol: request txpool contents when synced (diff) | |
download | monero-096e2135ddebbcbaaa2d8b2362849da678d9a28c.tar.xz |
Merge pull request #6214
054b4c7 protocol: request txpool contents when synced (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/tx_pool.h')
-rw-r--r-- | src/cryptonote_core/tx_pool.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cryptonote_core/tx_pool.h b/src/cryptonote_core/tx_pool.h index f716440ad..ca0e50415 100644 --- a/src/cryptonote_core/tx_pool.h +++ b/src/cryptonote_core/tx_pool.h @@ -441,6 +441,11 @@ namespace cryptonote */ bool get_transaction_info(const crypto::hash &txid, tx_details &td) const; + /** + * @brief get transactions not in the passed set + */ + bool get_complement(const std::vector<crypto::hash> &hashes, std::vector<cryptonote::blobdata> &txes) const; + private: /** |