aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/tx_pool.h
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-03-31 13:32:55 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-03-31 13:32:55 -0500
commit096e2135ddebbcbaaa2d8b2362849da678d9a28c (patch)
tree302adcbd0460ffc68d560822899273133bc8342f /src/cryptonote_core/tx_pool.h
parentMerge pull request #6407 (diff)
parentprotocol: request txpool contents when synced (diff)
downloadmonero-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.h5
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:
/**