yield-contract/contracts/tests/settleLogic.sol
2020-09-10 02:10:19 +05:30

10 lines
230 B
Solidity

pragma solidity ^0.6.0;
interface PoolInterface {
function setExchangeRate() external;
}
contract SettleLogic {
function calculateExchangeRate(address pool) external {
PoolInterface(pool).setExchangeRate();
}
}