mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Merge pull request #1112 from ripcurlx/Development
Fix InsufficientMoneyException when taking an offer
This commit is contained in:
commit
94f93918da
1 changed files with 3 additions and 1 deletions
|
@ -372,8 +372,10 @@ class TakeOfferDataModel extends ActivatableDataModel {
|
|||
void fundFromSavingsWallet() {
|
||||
useSavingsWallet = true;
|
||||
updateBalance();
|
||||
if (!isWalletFunded.get())
|
||||
if (!isWalletFunded.get()) {
|
||||
this.useSavingsWallet = false;
|
||||
updateBalance();
|
||||
}
|
||||
}
|
||||
|
||||
void setIsCurrencyForTakerFeeBtc(boolean isCurrencyForTakerFeeBtc) {
|
||||
|
|
Loading…
Add table
Reference in a new issue