aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/cryptonote_core.cpp
diff options
context:
space:
mode:
authortobtoht <tob@featherwallet.org>2026-06-09 18:00:03 +0000
committertobtoht <tob@featherwallet.org>2026-06-09 18:00:03 +0000
commit70d57adc4b08c39e391468369f1a29a532fb9a8e (patch)
treeeabdf246cccc21180383eb1844624cce7c92af8e /src/cryptonote_core/cryptonote_core.cpp
parentc6e5759f31a3d37be86f1da762401cc9d1ba7c7f (diff)
parent878c781764e62d8616ae49a42baf05366a1d7336 (diff)
downloadmonzero-core-70d57adc4b08c39e391468369f1a29a532fb9a8e.tar.gz
monzero-core-70d57adc4b08c39e391468369f1a29a532fb9a8e.tar.xz
monzero-core-70d57adc4b08c39e391468369f1a29a532fb9a8e.zip
Merge pull request #10543
878c781 zmq: apply restricted-mode privacy filtering to get_transaction_pool (greatjourney589)
Diffstat (limited to 'src/cryptonote_core/cryptonote_core.cpp')
-rw-r--r--src/cryptonote_core/cryptonote_core.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp
index f50c9ad3f..4d7a454b2 100644
--- a/src/cryptonote_core/cryptonote_core.cpp
+++ b/src/cryptonote_core/cryptonote_core.cpp
@@ -1548,9 +1548,9 @@ namespace cryptonote
return m_mempool.get_transactions_and_spent_keys_info(tx_infos, key_image_infos, include_sensitive_data);
}
//-----------------------------------------------------------------------------------------------
- bool core::get_pool_for_rpc(std::vector<cryptonote::rpc::tx_in_pool>& tx_infos, cryptonote::rpc::key_images_with_tx_hashes& key_image_infos) const
+ bool core::get_pool_for_rpc(std::vector<cryptonote::rpc::tx_in_pool>& tx_infos, cryptonote::rpc::key_images_with_tx_hashes& key_image_infos, bool include_sensitive) const
{
- return m_mempool.get_pool_for_rpc(tx_infos, key_image_infos);
+ return m_mempool.get_pool_for_rpc(tx_infos, key_image_infos, include_sensitive);
}
//-----------------------------------------------------------------------------------------------
bool core::get_short_chain_history(std::list<crypto::hash>& ids, uint64_t& current_height) const