Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaShWoof committed Jan 29, 2025
1 parent 73051d0 commit cd8abbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion contracts/test/CometHarnessInterfaceExtendedAssetList.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ abstract contract CometHarnessInterfaceExtendedAssetList is CometInterface {
function setCollateralBalance(address account, address asset, uint128 balance) virtual external;
function updateAssetsInExternal(address account, address asset, uint128 initialUserBalance, uint128 finalUserBalance) virtual external;
function getAssetList(address account) virtual external view returns (address[] memory);
function assetList() virtual external view returns (address);
}
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
if (proposal.id.eq(393)) {
console.log('Skipping proposal 393');
continue;
}

Expand Down

0 comments on commit cd8abbd

Please sign in to comment.