yield-contract/contracts/logics/settle/common/exchangeRate.sol
2020-09-29 22:59:21 +10:00

17 lines
315 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();
}
}