You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
375 B
14 lines
375 B
2 years ago
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
import "../patched/interfaces/IERC3156FlashBorrower.sol";
|
||
|
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
contract ERC3156FlashBorrowerHarness is IERC3156FlashBorrower {
|
||
|
bytes32 somethingToReturn;
|
||
|
|
||
|
function onFlashLoan(address, address, uint256, uint256, bytes calldata) external view override returns (bytes32) {
|
||
|
return somethingToReturn;
|
||
|
}
|
||
|
}
|