Skip to content

Commit

Permalink
added a filter for RewardsScenario
Browse files Browse the repository at this point in the history
  • Loading branch information
MSamiTariq committed Oct 18, 2024
1 parent 853fc84 commit 986c650
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scenario/RewardsScenario.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ for (let i = 0; i < MULTIPLIERS.length; i++) {
scenario(
`Comet#rewards > can claim supply rewards on scaling rewards contract with multiplier of ${MULTIPLIERS[i]}`,
{
filter: async (ctx) => await isRewardSupported(ctx),
filter: async (ctx) => await isRewardSupported(ctx) && !matchesDeployment(ctx, [{network: 'scroll', deployment: 'usdc'}]),
tokenBalances: {
albert: { $base: ' == 100' }, // in units of asset, not wei
},
Expand Down
2 changes: 1 addition & 1 deletion scenario/constraints/ProposalConstraint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export class ProposalConstraint<T extends CometContext> implements StaticConstra
}

// temporary hack to skip proposal 329
if (proposal.id.eq(348) || proposal.id.eq(349)) {
if (proposal.id.eq(349) || proposal.id.eq(350)) {
console.log('Skipping proposal 329');
continue;
}
Expand Down

0 comments on commit 986c650

Please sign in to comment.