aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/daemon_handler.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/rpc/daemon_handler.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/rpc/daemon_handler.cpp')
-rw-r--r--src/rpc/daemon_handler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/daemon_handler.cpp b/src/rpc/daemon_handler.cpp
index 10b20282e..add8bca8f 100644
--- a/src/rpc/daemon_handler.cpp
+++ b/src/rpc/daemon_handler.cpp
@@ -756,7 +756,7 @@ namespace rpc
void DaemonHandler::handle(const GetTransactionPool::Request& req, GetTransactionPool::Response& res)
{
- bool r = m_core.get_pool_for_rpc(res.transactions, res.key_images);
+ bool r = m_core.get_pool_for_rpc(res.transactions, res.key_images, !m_restricted);
if (!r) res.status = Message::STATUS_FAILED;
else res.status = Message::STATUS_OK;