diff options
| author | tobtoht <tob@featherwallet.org> | 2026-06-09 18:00:03 +0000 |
|---|---|---|
| committer | tobtoht <tob@featherwallet.org> | 2026-06-09 18:00:03 +0000 |
| commit | 70d57adc4b08c39e391468369f1a29a532fb9a8e (patch) | |
| tree | eabdf246cccc21180383eb1844624cce7c92af8e /src/rpc/daemon_handler.cpp | |
| parent | c6e5759f31a3d37be86f1da762401cc9d1ba7c7f (diff) | |
| parent | 878c781764e62d8616ae49a42baf05366a1d7336 (diff) | |
| download | monzero-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.cpp | 2 |
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; |
