diff options
author | Lee Clagett <code@leeclagett.com> | 2020-05-29 21:59:58 -0400 |
---|---|---|
committer | Lee Clagett <code@leeclagett.com> | 2020-08-14 19:46:33 +0000 |
commit | fe96e66ebe9fe38595adff32c6718be0abbdd002 (patch) | |
tree | ed79771f2bae07b866ad963fda0c6f1c831101cd /src/rpc | |
parent | Merge pull request #6354 (diff) | |
download | monero-fe96e66ebe9fe38595adff32c6718be0abbdd002.tar.xz |
Fix pruned tx for ZMQ's GetBlocksFast
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/daemon_handler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/daemon_handler.cpp b/src/rpc/daemon_handler.cpp index ab28319cb..fd33318b3 100644 --- a/src/rpc/daemon_handler.cpp +++ b/src/rpc/daemon_handler.cpp @@ -182,6 +182,7 @@ namespace rpc for (const auto& blob : it->second) { bwt.transactions.emplace_back(); + bwt.transactions.back().pruned = req.prune; if (!parse_and_validate_tx_from_blob(blob.second, bwt.transactions.back())) { res.blocks.clear(); |