Skip to content

Commit

Permalink
Changed public visibility to private for mappings.
Browse files Browse the repository at this point in the history
  • Loading branch information
remedcu committed May 13, 2021
1 parent 2e7ff41 commit 91493f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/locked/LockedSOV.sol
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ contract LockedSOV {
ILockedSOV public newLockedSOV;

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

/* Events */

Expand Down

0 comments on commit 91493f5

Please sign in to comment.