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

7 lines
141 B
Solidity

pragma solidity ^0.6.0;
contract FlusherLogic {
function isFlusher(address addres) external returns (bool) {
return true;
}
}