|
@@ -45,7 +45,9 @@ export const filterMethods = {
|
|
|
finalizedSpendingProposals: ({ section, method }: CacheEvent) =>
|
|
|
section === "proposalsEngine" && method === "ProposalStatusUpdated",
|
|
|
sudoSetBalance: ({ section, method }: CacheEvent) =>
|
|
|
- section == "balances" && method == "BalanceSet",
|
|
|
+ section === "balances" && method === "BalanceSet",
|
|
|
+ proposalStatusUpdated: ({ section, method }: CacheEvent) =>
|
|
|
+ section === "proposalsEngine" && method === "ProposalStatusUpdated",
|
|
|
};
|
|
|
|
|
|
export const getWorkerRewards = async (
|