Skip to content

Commit

Permalink
Fix rebase merge errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ripcurlx committed Nov 4, 2021
1 parent e17fd9e commit 0e4933f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
import org.jetbrains.annotations.NotNull;

import static bisq.core.payment.payload.PaymentMethod.HAL_CASH_ID;
import static bisq.desktop.main.offer.OfferViewUtil.addPayInfoEntry;
import static bisq.desktop.main.offer.bisq_v1.OfferViewUtil.addPayInfoEntry;
import static bisq.desktop.util.FormBuilder.*;
import static javafx.beans.binding.Bindings.createStringBinding;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import bisq.desktop.components.AutoTooltipLabel;
import bisq.desktop.components.HyperlinkWithIcon;
import bisq.desktop.main.MainView;
import bisq.desktop.main.offer.SellOfferView;
import bisq.desktop.main.offer.offerbook.OfferBookView;
import bisq.desktop.main.overlays.popups.Popup;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@

import org.jetbrains.annotations.NotNull;

import static bisq.desktop.main.offer.OfferViewUtil.addPayInfoEntry;
import static bisq.desktop.main.offer.bisq_v1.OfferViewUtil.addPayInfoEntry;
import static bisq.desktop.util.FormBuilder.*;
import static javafx.beans.binding.Bindings.createStringBinding;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,8 @@ public PaymentAccount createBsqAccount(Offer offer) {
return coreApi.createCryptoCurrencyPaymentAccount(DisplayUtils.createAssetsAccountName("BSQ", unusedBsqAddressAsString),
"BSQ",
unusedBsqAddressAsString,
isInstantPaymentMethod(offer));
isInstantPaymentMethod(offer),
false);
}

public void setOfferActionHandler(OfferView.OfferActionHandler offerActionHandler) {
Expand Down

0 comments on commit 0e4933f

Please sign in to comment.