Skip to content

Commit

Permalink
clean up comments
Browse files Browse the repository at this point in the history
  • Loading branch information
eodgooch committed Oct 20, 2020
1 parent f5bdb5c commit ef3111d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/RealioLPStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ contract RealioLPStaking is Ownable {
pool.lastRewardBlock = block.number;
}

// Deposit LP tokens to MasterChef for RIO allocation.
// Deposit LP tokens to Contract for RIO allocation.
function deposit(uint256 _poolId, uint256 _amount) public {
PoolInfo storage pool = poolInfo[_poolId];
UserInfo storage user = userInfo[_poolId][msg.sender];
Expand All @@ -209,7 +209,7 @@ contract RealioLPStaking is Ownable {
emit Deposit(msg.sender, _poolId, _amount);
}

// Withdraw LP tokens from MasterChef.
// Withdraw LP tokens from Contract.
function withdraw(uint256 _pid, uint256 _amount) public {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
Expand Down

0 comments on commit ef3111d

Please sign in to comment.