mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-08 00:03:07 +00:00
14 lines
631 B
Diff
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);
|
|
}
|