mirror of
https://github.com/Instadapp/yield-contract.git
synced 2024-07-29 21:47:29 +00:00
10 lines
230 B
Solidity
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();
|
|
}
|
|
} |