mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-03 13:53:10 +00:00
19 lines
423 B
Diff
19 lines
423 B
Diff
diff --git a/contracts/Vault.sol b/contracts/Vault.sol
|
|
index 8433a08..185ed83 100644
|
|
--- a/contracts/Vault.sol
|
|
+++ b/contracts/Vault.sol
|
|
@@ -240,13 +240,7 @@ contract Vault is VaultBase, Pausable, Ownable {
|
|
_withdraw(controller, fund, accountId);
|
|
}
|
|
|
|
- function pause() public onlyOwner {
|
|
- _pause();
|
|
- }
|
|
|
|
- function unpause() public onlyOwner {
|
|
- _unpause();
|
|
- }
|
|
|
|
error VaultOnlyAccountHolder();
|
|
}
|