From ef3111d83b33dd6e4648314a8245afe3c8575df8 Mon Sep 17 00:00:00 2001 From: Aaron Gooch Date: Mon, 19 Oct 2020 21:12:36 -0700 Subject: [PATCH] clean up comments --- contracts/RealioLPStaking.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/RealioLPStaking.sol b/contracts/RealioLPStaking.sol index 311b20e..cd66811 100644 --- a/contracts/RealioLPStaking.sol +++ b/contracts/RealioLPStaking.sol @@ -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]; @@ -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];