logos-storage-contracts-eth/certora/mutations/025_extendLock_pause_bypass.patch
2025-07-30 12:03:51 +03:00

14 lines
631 B
Diff

diff --git a/contracts/Vault.sol b/contracts/Vault.sol
index 8433a08..f8fcddf 100644
--- a/contracts/Vault.sol
+++ b/contracts/Vault.sol
@@ -125,7 +125,7 @@ contract Vault is VaultBase, Pausable, Ownable {
/// the existing expiry, but no later than the maximum timestamp that was
/// provided when locking the fund.
/// Only allowed when the lock has not unlocked yet.
- function extendLock(FundId fundId, Timestamp expiry) public whenNotPaused {
+ function extendLock(FundId fundId, Timestamp expiry) public {
Controller controller = Controller.wrap(msg.sender);
_extendLock(controller, fundId, expiry);
}