From 32b0e15f67da6f08069173585fa801f641209d88 Mon Sep 17 00:00:00 2001 From: lostystyg Date: Thu, 8 Sep 2022 15:26:58 +0400 Subject: [PATCH] Optimized notifications collecting --- src/pocketdb/repositories/web/WebRpcRepository.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pocketdb/repositories/web/WebRpcRepository.cpp b/src/pocketdb/repositories/web/WebRpcRepository.cpp index fcf0d05fa..60cad17f7 100644 --- a/src/pocketdb/repositories/web/WebRpcRepository.cpp +++ b/src/pocketdb/repositories/web/WebRpcRepository.cpp @@ -71,7 +71,7 @@ namespace PocketDb if (auto acc = accsData.find(notifiersEntry.first); acc != accsData.end()) { notifier.pushKV("i", acc->second.Serialize()); } - notifiers.pushKV(notifiersEntry.first, notifier); + notifiers.pushKV(notifiersEntry.first, notifier, false); } UniValue result (UniValue::VOBJ);