diff options
author | luigi1111 <luigi1111w@gmail.com> | 2024-07-16 18:46:04 -0400 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2024-07-16 18:46:04 -0400 |
commit | baf6df06c25e0a0702076dcdb707c0500243960e (patch) | |
tree | e9ae23fbcf96a4a86652c9eeeae8289002cbfe1e | |
parent | Merge pull request #9342 (diff) | |
parent | wallet: fetch pool txs in pruned form (diff) | |
download | monero-baf6df06c25e0a0702076dcdb707c0500243960e.tar.xz |
Merge pull request #9343
302fa9b wallet: fetch pool txs in pruned form (jeffro256)
-rw-r--r-- | src/wallet/wallet2.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 93ac1a938..c462f49f9 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3679,6 +3679,7 @@ void wallet2::update_pool_state(std::vector<std::tuple<cryptonote::transaction, req.requested_info = COMMAND_RPC_GET_BLOCKS_FAST::POOL_ONLY; req.pool_info_since = m_pool_info_query_time; + req.prune = true; { const boost::lock_guard<boost::recursive_mutex> lock{m_daemon_rpc_mutex}; |