mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-03 13:53:10 +00:00
14 lines
425 B
Diff
14 lines
425 B
Diff
diff --git a/contracts/Vault.sol b/contracts/Vault.sol
|
|
index 8433a08..42a3b9b 100644
|
|
--- a/contracts/Vault.sol
|
|
+++ b/contracts/Vault.sol
|
|
@@ -163,7 +163,7 @@ contract Vault is VaultBase, Pausable, Ownable {
|
|
AccountId from,
|
|
AccountId to,
|
|
uint128 amount
|
|
- ) public whenNotPaused {
|
|
+ ) public {
|
|
Controller controller = Controller.wrap(msg.sender);
|
|
_transfer(controller, fundId, from, to, amount);
|
|
}
|