mirror of
https://github.com/Instadapp/yield-contract.git
synced 2024-07-29 21:47:29 +00:00
7 lines
141 B
Solidity
7 lines
141 B
Solidity
|
pragma solidity ^0.6.0;
|
||
|
|
||
|
contract FlusherLogic {
|
||
|
function isFlusher(address addres) external returns (bool) {
|
||
|
return true;
|
||
|
}
|
||
|
}
|