mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-07-29 17:58:56 -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() {
|
void fundFromSavingsWallet() {
|
||||||
this.useSavingsWallet = true;
|
this.useSavingsWallet = true;
|
||||||
updateBalance();
|
updateBalance();
|
||||||
if (!isWalletFunded.get())
|
if (!isWalletFunded.get()) {
|
||||||
this.useSavingsWallet = false;
|
this.useSavingsWallet = false;
|
||||||
|
updateBalance();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue