mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Bug fix: we created a new address entry which causes bugs in case a user takes an offer again which failed in an early preparation state before.
This commit is contained in:
parent
3987f9cd5a
commit
dceba6d350
1 changed files with 2 additions and 2 deletions
|
@ -53,8 +53,8 @@ public class CreateTakerFeeTx extends TradeTask {
|
|||
// appear as unused and therefore selected for the outputs for the MS tx.
|
||||
// That would cause incorrect display of the balance as
|
||||
// the change output would be considered as not available balance (part of the locked trade amount).
|
||||
walletService.getNewAddressEntry(id, AddressEntry.Context.MULTI_SIG);
|
||||
walletService.getNewAddressEntry(id, AddressEntry.Context.TRADE_PAYOUT);
|
||||
walletService.getOrCreateAddressEntry(id, AddressEntry.Context.MULTI_SIG);
|
||||
walletService.getOrCreateAddressEntry(id, AddressEntry.Context.TRADE_PAYOUT);
|
||||
|
||||
AddressEntry fundingAddressEntry = walletService.getOrCreateAddressEntry(id, AddressEntry.Context.OFFER_FUNDING);
|
||||
AddressEntry reservedForTradeAddressEntry = walletService.getOrCreateAddressEntry(id, AddressEntry.Context.RESERVED_FOR_TRADE);
|
||||
|
|
Loading…
Add table
Reference in a new issue