You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When withdrawing both parties' funds, the factory.removeDeposit() is called, then delete deployedDeposits[(depositsCreators[msg.sender])] is done.
This deletes all the contracts belonging to sender, instead of just the specific one.
Tricky to fix- we work with an array, and don't want to leave an empty cell in the middle.
The text was updated successfully, but these errors were encountered:
When withdrawing both parties' funds, the
factory.removeDeposit()
is called, thendelete deployedDeposits[(depositsCreators[msg.sender])]
is done.This deletes all the contracts belonging to sender, instead of just the specific one.
Tricky to fix- we work with an array, and don't want to leave an empty cell in the middle.
The text was updated successfully, but these errors were encountered: