Skip to content
This repository was archived by the owner on Jun 17, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fee_allocator/accounting/fee_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def run_fees(
poolutil = BalPoolsGauges(chain.value)
listed_core_pools = core_pools.get(chain.value, None)
pools = {}
if listed_core_pools is None or not fees_to_distribute.get(chain.value):
if listed_core_pools is None or chain.value not in fees_to_distribute:
continue
### Remove any invalid core pools
for pool_id, description in listed_core_pools.items():
Expand Down
Loading