Skip to content

Commit

Permalink
test: fix certora
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisGD committed Dec 17, 2024
1 parent bd8a3b5 commit a7c5031
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions certora/helpers/MetaMorphoHarness.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
pragma solidity 0.8.26;

import {
Math, MetaMorpho, Id, ConstantsLib, PendingUint192, PendingAddress, MarketConfig
Math, MetaMorphoV1_1, Id, ConstantsLib, PendingUint192, PendingAddress, MarketConfig
} from "../munged/MetaMorphoV1_1.sol";

contract MetaMorphoHarness is MetaMorpho {
contract MetaMorphoHarness is MetaMorphoV1_1 {
constructor(
address owner,
address morpho,
uint256 initialTimelock,
address _asset,
string memory _name,
string memory _symbol
) MetaMorpho(owner, morpho, initialTimelock, _asset, _name, _symbol) {}
) MetaMorphoV1_1(owner, morpho, initialTimelock, _asset, _name, _symbol) {}

function pendingTimelock_() external view returns (PendingUint192 memory) {
return pendingTimelock;
Expand Down

0 comments on commit a7c5031

Please sign in to comment.