Skip to content

Commit 0b829f2

Browse files
committed
prettier
1 parent 2090743 commit 0b829f2

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

contracts/test/_fixture.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,6 @@ const defaultFixture = deployments.createFixture(async () => {
927927
merklDistributorAbi,
928928
addresses.mainnet.MerklDistributor
929929
);
930-
931930
} else {
932931
usdt = await ethers.getContract("MockUSDT");
933932
usds = await ethers.getContract("MockUSDS");
@@ -1174,7 +1173,7 @@ const defaultFixture = deployments.createFixture(async () => {
11741173
legacyMorphoToken,
11751174
poolBoosterCentralRegistry,
11761175
poolBoosterMerklFactory,
1177-
merklDistributor
1176+
merklDistributor,
11781177
};
11791178
});
11801179

contracts/test/poolBooster/poolBooster.mainnet.fork-test.js

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ describe("ForkTest: Merkl Pool Booster", function () {
1010
//const DEFAULT_DURATION = 86400 * 7; // a week
1111
//const MOPRHO_CAMPAIGN_DATA = "0xb8fef900b383db2dbbf4458c7f46acf5b140f26d603a6d1829963f241b82510e00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000";
1212

13-
let fixture,
14-
poolBoosterMerklFactory,
15-
merklDistributor,
16-
oeth;
13+
let fixture, poolBoosterMerklFactory, merklDistributor, oeth;
1714
beforeEach(async () => {
1815
fixture = await sonicFixture();
1916
oeth = fixture.oeth;
@@ -25,7 +22,7 @@ describe("ForkTest: Merkl Pool Booster", function () {
2522
expect(await poolBoosterMerklFactory.merklDistributor()).to.equal(
2623
addresses.mainnet.MerklDistributor
2724
);
28-
25+
2926
// Uncomment once the pool booster is deployed
3027
// const poolBooster = await poolBoosterMerklFactory.poolBoosters(0)
3128
// expect(await poolBooster.campaignType()).to.equal(
@@ -45,6 +42,8 @@ describe("ForkTest: Merkl Pool Booster", function () {
4542
});
4643

4744
it("Should have OETH token supported by Merkl Distributor", async () => {
48-
expect(await merklDistributor.rewardTokenMinAmounts(oeth.address)).to.equal(oethUnits("0.00001"));
45+
expect(await merklDistributor.rewardTokenMinAmounts(oeth.address)).to.equal(
46+
oethUnits("0.00001")
47+
);
4948
});
50-
});
49+
});

contracts/utils/addresses.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,11 +350,13 @@ addresses.mainnet.passthrough.uniswap.OETH_WETH =
350350
"0x216dEBBF25e5e67e6f5B2AD59c856Fc364478A6A";
351351

352352
// Mainnet Merkl
353-
addresses.mainnet.MerklDistributor = "0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd";
353+
addresses.mainnet.MerklDistributor =
354+
"0x8BB4C975Ff3c250e0ceEA271728547f3802B36Fd";
354355

355356
// Morpho Markets
356357
// OUSD is supply asset - USDC borrowing asset
357-
addresses.mainnet.MorphoOusdUsdcMarket = "0xb8fef900b383db2dbbf4458c7f46acf5b140f26d603a6d1829963f241b82510e";
358+
addresses.mainnet.MorphoOusdUsdcMarket =
359+
"0xb8fef900b383db2dbbf4458c7f46acf5b140f26d603a6d1829963f241b82510e";
358360

359361
// Arbitrum One
360362
addresses.arbitrumOne = {};

0 commit comments

Comments
 (0)