Skip to content

Commit

Permalink
feat: skip governance update proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriy-woof-software committed Jan 29, 2025
1 parent ba0e373 commit 8d2b5af
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 @@ -62,9 +62,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 393 - governance update
if (proposal.id.eq(393)) {
console.log('Skipping proposal 393');
continue;
}

Expand Down

0 comments on commit 8d2b5af

Please sign in to comment.