-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
24278f2
commit c4f64bf
Showing
2 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// SPDX-License-Identifier: AGPL-3.0-or-later | ||
pragma solidity ^0.8.0; | ||
|
||
import { SparkLendFreezerMom } from "src/SparkLendFreezerMom.sol"; | ||
|
||
contract SparkLendFreezerMomHarness is SparkLendFreezerMom { | ||
|
||
constructor(address poolConfigurator_, address pool_, address authority_) | ||
SparkLendFreezerMom(poolConfigurator_, pool_, authority_) {} | ||
|
||
function isAuthorizedExternal(address src, bytes4 sig) public view returns (bool) { | ||
return super.isAuthorized(src, sig); | ||
} | ||
|
||
} |