Skip to content

Commit

Permalink
fix: Add __gap in MinterAccessControl
Browse files Browse the repository at this point in the history
  • Loading branch information
Hadrienlc committed Nov 17, 2021
1 parent 88dd056 commit 3a68904
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tokens/contracts/access/MinterAccessControl.sol
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,6 @@ contract MinterAccessControl is Initializable, OwnableUpgradeable {
function isValidMinter(address account) public view returns (bool) {
return !minterAccessControlEnabled || _minters[account];
}

uint256[50] private __gap;
}

0 comments on commit 3a68904

Please sign in to comment.