We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6603f2e commit ef6cf3bCopy full SHA for ef6cf3b
packages/utils/src/components/pausable/pausable.cairo
@@ -75,7 +75,7 @@ pub(crate) mod PausableComponent {
75
/// Emits an `Unpaused` event.
76
fn unpause(ref self: ComponentState<TContractState>) {
77
let roles = get_dep_component!(@self, Roles);
78
- roles.only_security_admin();
+ roles.only_security_governor();
79
self.assert_paused();
80
self.paused.write(false);
81
self.emit(Unpaused { account: get_caller_address() });
0 commit comments