Skip to content

Commit

Permalink
removed boolean casting
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzschoff committed Jun 27, 2023
1 parent c596d8e commit e9f7068
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export const bootstrapPerpsMarkets = (
before('set max market value', async () => {
await contracts.PerpsMarket.connect(marketOwner).setMaxMarketValue(
marketId,
!!maxMarketValue ? maxMarketValue : bn(10_000_000)
maxMarketValue ? maxMarketValue : bn(10_000_000)
);
});

Expand Down

0 comments on commit e9f7068

Please sign in to comment.