yield-contract/contracts/tests/settleLogic.sol

10 lines
230 B
Solidity
Raw Normal View History

2020-09-09 20:40:19 +00:00
pragma solidity ^0.6.0;
interface PoolInterface {
function setExchangeRate() external;
}
contract SettleLogic {
function calculateExchangeRate(address pool) external {
PoolInterface(pool).setExchangeRate();
}
}