Skip to content

Commit

Permalink
fix: skip proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaShWoof committed Jan 29, 2025
1 parent 8b17ce3 commit 3be23e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scenario/constraints/ProposalConstraint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ export class ProposalConstraint<T extends CometContext> implements StaticConstra
);
}

// temporary hack to skip proposal 385
if (proposal.id.eq(385)) {
console.log('Skipping proposal 385');
// temporary hack to skip proposal 394
if (proposal.id.eq(394)) {
console.log('Skipping proposal 394');
continue;
}

Expand Down

0 comments on commit 3be23e1

Please sign in to comment.