setExchangeRate basic logic structure

This commit is contained in:
Samyak Jain 2020-09-10 17:30:33 +10:00
parent 49f98c31e7
commit 36673344e5

View File

@ -0,0 +1,20 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.8;
import { DSMath } from "../../../libs/safeMath.sol";
contract LogicOne {
address poolToken;
function setExchangeRate() public {
// run setExchangeRate in address(this)
}
constructor (address ethPool) public {
poolToken = address(ethPool);
}
receive() external payable {}
}