Skip to content

Commit

Permalink
feat(lockingpool): whiltelist is not required for updateSigner
Browse files Browse the repository at this point in the history
  • Loading branch information
ericlee42 committed Mar 6, 2024
1 parent 4e2203b commit 77d6144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/LockingPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ contract LockingPool is ILockingPool, PausableUpgradeable, SequencerInfo {
function updateSigner(
uint256 _seqId,
bytes calldata _signerPubkey
) external whitelistRequired {
) external whenNotPaused {
Sequencer storage seq = sequencers[_seqId];
if (seq.status != Status.Active) {
revert SeqNotActive();
Expand Down

0 comments on commit 77d6144

Please sign in to comment.