mirror of
https://github.com/Instadapp/yield-contract.git
synced 2024-07-29 21:47:29 +00:00
19 lines
350 B
Solidity
19 lines
350 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.6.8;
|
|
|
|
import { DSMath } from "../../../libs/safeMath.sol";
|
|
|
|
interface PoolInterface {
|
|
function setExchangeRate() external;
|
|
}
|
|
|
|
contract LogicOne {
|
|
|
|
function setExchangeRate() public payable {
|
|
PoolInterface(address(this)).setExchangeRate();
|
|
}
|
|
|
|
receive() external payable {}
|
|
|
|
}
|