Skip to content

Commit

Permalink
Minor Comments Updated in LockedSOVMockup
Browse files Browse the repository at this point in the history
  • Loading branch information
Franklin Richards committed May 6, 2021
1 parent 7f4bf49 commit f38101a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/mockup/LockedSOVMockup.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import "../openzeppelin/SafeMath.sol";
import "../interfaces/IERC20.sol";

/**
* @title An interface for the Locked SOV Contract.
* @title An mockup for the Locked SOV Contract.
* @author Franklin Richards - powerhousefrank@protonmail.com
* @dev This is not a complete interface of the Locked SOV Contract.
* @dev This is not a complete mockup of the Locked SOV Contract.
*/
contract LockedSOVMockup {
using SafeMath for uint256;
Expand All @@ -16,9 +16,9 @@ contract LockedSOVMockup {
/// @notice The SOV token contract.
IERC20 public SOV;

/// @notice The user balances.
/// @notice The locked user balances.
mapping(address => uint256) lockedBalances;
/// @notice The user balances.
/// @notice The contracts/wallets with admin power.
mapping(address => bool) isAdmin;

/* Events */
Expand Down

0 comments on commit f38101a

Please sign in to comment.