Skip to content

Commit

Permalink
semis
Browse files Browse the repository at this point in the history
  • Loading branch information
Moonster-BSC committed May 7, 2021
1 parent 30dd60a commit c7f91ac
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions contracts/interfaces/IMiniChefV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ interface IMiniChefV2 {
uint64 allocPoint;
}

function poolLength() external view returns (uint256)
function updatePool(uint256 pid) external returns (IMiniChefV2.PoolInfo memory)
function deposit(uint256 pid, uint256 amount, address to) external
function withdraw(uint256 pid, uint256 amount, address to) external
function harvest(uint256 pid, address to) external
function withdrawAndHarvest(uint256 pid, uint256 amount, address to) external
function emergencyWithdraw(uint256 pid, address to) external
function poolLength() external view returns (uint256);
function updatePool(uint256 pid) external returns (IMiniChefV2.PoolInfo memory);
function deposit(uint256 pid, uint256 amount, address to) external;
function withdraw(uint256 pid, uint256 amount, address to) external;
function harvest(uint256 pid, address to) external;
function withdrawAndHarvest(uint256 pid, uint256 amount, address to) external;
function emergencyWithdraw(uint256 pid, address to) external;
}

0 comments on commit c7f91ac

Please sign in to comment.