notify balance update after releasing wallet lock

This commit is contained in:
woodser 2025-09-15 02:48:24 -04:00 committed by woodser
parent 812dcf27e8
commit 777cbfdc0c

View file

@ -165,10 +165,10 @@ public class Balances {
// play sound if funds received
boolean fundsReceived = balanceSumBefore != null && getNonTradeBalanceSum().compareTo(balanceSumBefore) > 0;
if (fundsReceived) HavenoUtils.playCashRegisterSound();
// notify balance update
updateCounter.set(updateCounter.get() + 1);
}
// notify balance update
updateCounter.set(updateCounter.get() + 1);
}
}