Skip to content

Commit

Permalink
style: adapt imports so that etherscan can verify the contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
0xrusowsky authored Sep 28, 2023
1 parent a405e2e commit a899201
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CoolerCallback.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0;

import {CoolerFactory} from "src/CoolerFactory.sol";
import {CoolerFactory} from "./CoolerFactory.sol";

/// @notice Allows for debt issuers to execute logic when a loan is repaid, rolled, or defaulted.
/// @dev The three callback functions must be implemented if `isCoolerCallback()` is set to true.
Expand Down Expand Up @@ -45,4 +45,4 @@ abstract contract CoolerCallback {

/// @notice Callback function that handles defaults.
function _onDefault(uint256 loanID_, uint256 principle_, uint256 interestDue_, uint256 collateral) internal virtual;
}
}

0 comments on commit a899201

Please sign in to comment.