The function to ensure users have a minimum balance of "ether" is called twice. Once on loading accounts, once on saving them.
Cause: Because the load function also calls the save function and this happens before any transactions are completed, the second time that ensureMinBalance is called it still sees a low balance, and sends another transaction.
The function to ensure users have a minimum balance of "ether" is called twice. Once on loading accounts, once on saving them.
Cause: Because the load function also calls the save function and this happens before any transactions are completed, the second time that
ensureMinBalance
is called it still sees a low balance, and sends another transaction.