mirror of
https://github.com/logos-storage/logos-storage-contracts-eth.git
synced 2026-01-02 13:23:10 +00:00
Fix compile problem in one mutation
This commit is contained in:
parent
4dff946866
commit
7c2e9e68fc
@ -7,7 +7,7 @@ index be21481..f22b4ed 100644
|
||||
|
||||
Account memory account = _accounts[controller][fundId][accountId];
|
||||
- require(account.flow.incoming == account.flow.outgoing, VaultFlowNotZero());
|
||||
+ require(account.flow.incoming != account.flow.outgoing, VaultFlowNotZero());
|
||||
+ require(!(account.flow.incoming == account.flow.outgoing), VaultFlowNotZero());
|
||||
uint128 amount = account.balance.available + account.balance.designated;
|
||||
|
||||
delete _accounts[controller][fundId][accountId];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user