Skip to content

Commit

Permalink
Merge pull request #325 from morpho-org/chore/update-blue
Browse files Browse the repository at this point in the history
Update libs
  • Loading branch information
MerlinEgalite authored Nov 15, 2023
2 parents 8be59f1 + e5bd255 commit f4e2574
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion test/forge/ReentrancyTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ contract ReentrancyTest is IntegrationTest, IERC1820Implementer {
loanToken: address(reentrantToken),
collateralToken: address(0),
oracle: address(0),
irm: address(0),
irm: address(irm),
lltv: 0
});

Expand Down
3 changes: 1 addition & 2 deletions test/forge/helpers/BaseTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,11 @@ contract BaseTest is Test {
loanToken: address(loanToken),
collateralToken: address(0),
oracle: address(0),
irm: address(0),
irm: address(irm),
lltv: 0
});

vm.startPrank(MORPHO_OWNER);
morpho.enableIrm(address(0));
morpho.enableIrm(address(irm));
morpho.setFeeRecipient(MORPHO_FEE_RECIPIENT);

Expand Down
3 changes: 1 addition & 2 deletions test/hardhat/MetaMorpho.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ describe("MetaMorpho", () => {
loanToken: loanAddress,
collateralToken: ZeroAddress,
oracle: ZeroAddress,
irm: ZeroAddress,
irm: irmAddress,
lltv: 0n,
};

Expand All @@ -182,7 +182,6 @@ describe("MetaMorpho", () => {
await morpho.createMarket(marketParams);
}

await morpho.enableIrm(idleParams.irm);
await morpho.enableLltv(idleParams.lltv);
await morpho.createMarket(idleParams);

Expand Down

0 comments on commit f4e2574

Please sign in to comment.