mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-28 17:34:11 -04:00
Fix bug with wrong balance
This commit is contained in:
parent
1790dbd542
commit
b71ce2fc37
1 changed files with 3 additions and 1 deletions
|
@ -321,8 +321,10 @@ class CreateOfferDataModel extends ActivatableDataModel {
|
|||
void fundFromSavingsWallet() {
|
||||
this.useSavingsWallet = true;
|
||||
updateBalance();
|
||||
if (!isWalletFunded.get())
|
||||
if (!isWalletFunded.get()) {
|
||||
this.useSavingsWallet = false;
|
||||
updateBalance();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue