Skip to content

Commit 29ed2e6

Browse files
committed
fix: allow setting pause guardian when paused (TRST-R05)
Signed-off-by: Tomás Migone <[email protected]>
1 parent 194b603 commit 29ed2e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/horizon/contracts/data-service/extensions/DataServicePausableUpgradeable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ abstract contract DataServicePausableUpgradeable is PausableUpgradeable, DataSer
6464
* @param _pauseGuardian The address of the pause guardian
6565
* @param _allowed The allowed status of the pause guardian
6666
*/
67-
function _setPauseGuardian(address _pauseGuardian, bool _allowed) internal whenNotPaused {
67+
function _setPauseGuardian(address _pauseGuardian, bool _allowed) internal {
6868
require(
6969
pauseGuardians[_pauseGuardian] == !_allowed,
7070
DataServicePausablePauseGuardianNoChange(_pauseGuardian, _allowed)

0 commit comments

Comments
 (0)