From 02b0f3e9f2afa535efba3ba3103746968c6f37b8 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Sun, 14 Nov 2021 12:20:43 -0500 Subject: [PATCH] fix missing es notification for support amount changing --- lbry/wallet/server/block_processor.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lbry/wallet/server/block_processor.py b/lbry/wallet/server/block_processor.py index 5895cb44e..141d5c6b1 100644 --- a/lbry/wallet/server/block_processor.py +++ b/lbry/wallet/server/block_processor.py @@ -1351,6 +1351,8 @@ class BlockProcessor: set(self.removed_active_support_amount_by_claim.keys()) ).union( set(self.activated_support_amount_by_claim.keys()) + ).union( + set(self.pending_support_amount_change.keys()) ).difference( self.removed_claim_hashes )