mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-03 22:03:08 +00:00
14 lines
431 B
Diff
14 lines
431 B
Diff
diff --git a/contracts/Vault.sol b/contracts/Vault.sol
|
|
index 8433a08..de9c8d2 100644
|
|
--- a/contracts/Vault.sol
|
|
+++ b/contracts/Vault.sol
|
|
@@ -202,7 +202,7 @@ contract Vault is VaultBase, Pausable, Ownable {
|
|
function burnAccount(
|
|
FundId fundId,
|
|
AccountId accountId
|
|
- ) public whenNotPaused {
|
|
+ ) public {
|
|
Controller controller = Controller.wrap(msg.sender);
|
|
_burnAccount(controller, fundId, accountId);
|
|
}
|