forked from LBRYCommunity/lbry-sdk
fix updating resolve by effective amount after abandoning support
This commit is contained in:
parent
1dc961d6eb
commit
ed652c0c56
1 changed files with 3 additions and 1 deletions
|
@ -1130,7 +1130,9 @@ class BlockProcessor:
|
||||||
self.touched_claims_to_send_es.update(
|
self.touched_claims_to_send_es.update(
|
||||||
set(self.staged_activated_support.keys()).union(
|
set(self.staged_activated_support.keys()).union(
|
||||||
set(claim_hash for (_, claim_hash) in self.staged_activated_claim.keys())
|
set(claim_hash for (_, claim_hash) in self.staged_activated_claim.keys())
|
||||||
).union(self.signatures_changed).difference(self.removed_claims_to_send_es)
|
).union(self.signatures_changed).union(
|
||||||
|
set(self.removed_active_support.keys())
|
||||||
|
).difference(self.removed_claims_to_send_es)
|
||||||
)
|
)
|
||||||
|
|
||||||
# use the cumulative changes to update bid ordered resolve
|
# use the cumulative changes to update bid ordered resolve
|
||||||
|
|
Loading…
Reference in a new issue