Skip to content

Commit

Permalink
fix: Remove redundant whenPaused modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
dgusakov committed Aug 20, 2024
1 parent dca28fd commit a0dc831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CSFeeOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ contract CSFeeOracle is
}

/// @notice Resume accepting oracle reports
function resume() external whenPaused onlyRole(RESUME_ROLE) {
function resume() external onlyRole(RESUME_ROLE) {
_resume();
}

Expand Down

0 comments on commit a0dc831

Please sign in to comment.