Skip to content

Commit

Permalink
Fixes Issue #176 - Duplicate modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
flashburst committed Sep 12, 2022
1 parent 3184204 commit 290c68f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/core/ProtoBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ abstract contract ProtoBase is AccessControl, Pausable, Recoverable {
* The only (private) key that is ever allowed to be programmatically used is the
* pause agents.
*/
function unpause() external whenPaused nonReentrant whenPaused {
function unpause() external nonReentrant whenPaused {
AccessControlLibV1.mustBeUnpauseAgent(s);
super._unpause();
}
Expand Down

0 comments on commit 290c68f

Please sign in to comment.