Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
10ae06c
AddDataMessageTest: Suppress RandomUtils deprecation warning
alvasw Nov 12, 2025
cbbf144
MapStoreServiceFake: Suppress unchecked warnings
alvasw Nov 12, 2025
88de374
AppendOnlyDataStoreServiceFake: Suppress unchecked warnings
alvasw Nov 12, 2025
254e3cf
PreferencesPayload: Reserve and remove deprecated buyerSecurityDeposi…
alvasw Nov 12, 2025
7b30fd4
PaymentAccountPayload: Suppress deprecation warning for maxTradePeriod
alvasw Nov 12, 2025
af163f0
CoreProtoResolver: Suppress deprecation warning
alvasw Nov 12, 2025
465c474
OfferPayload: Suppress deprecation warning
alvasw Nov 12, 2025
6d42939
TradeStatisticsManager: Suppress deprecation warning
alvasw Nov 12, 2025
2460a1b
TradeStatisticsConverter: Suppress deprecation warning
alvasw Nov 12, 2025
3b10568
OpenOfferManager: Suppress deprecation warning
alvasw Nov 12, 2025
f602ff0
MenuItem: Suppress unchecked warning
alvasw Nov 12, 2025
3344975
FxmlViewLoader: Suppress deprecation warning
alvasw Nov 12, 2025
7ad9eae
FiatAccountsView: Suppress deprecation warning
alvasw Nov 12, 2025
9ff3fcd
CloneOfferDataModel: Suppress deprecation warning
alvasw Nov 12, 2025
6198b09
BuyerStep2View: Suppress deprecation warning
alvasw Nov 12, 2025
5617c1e
BsqWalletView: Suppress rawtypes and unchecked warning
alvasw Nov 12, 2025
2cd04f4
DownloadTask: Migrate deprecated IOUtils.closeQuietly method
alvasw Dec 1, 2025
f2d480c
MovingAverageUtils: Suppress unchecked warning
alvasw Dec 1, 2025
48781ad
ComponentsDemo: Suppress unchecked warning
alvasw Dec 1, 2025
792f09b
TradeTest: Suppress deprecation warning
alvasw Dec 1, 2025
4c90099
Update to Gradle 8.9
alvasw Dec 1, 2025
b9e785c
build-logic: Migrate to Gradle 8.0
alvasw Dec 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apitest/src/test/java/bisq/apitest/scenario/TradeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ public void testTakeSellBTCOffer(final TestInfo testInfo) {
@Test
@Order(3)
public void testTakeBuyBSQOffer(final TestInfo testInfo) {
@SuppressWarnings("deprecation")
TakeBuyBSQOfferTest test = new TakeBuyBSQOfferTest();
test.testTakeAlicesSellBTCForBSQOffer(testInfo);
test.testBobsConfirmPaymentStarted(testInfo);
Expand All @@ -100,6 +101,7 @@ public void testTakeBuyBTCOfferWithNationalBankAcct(final TestInfo testInfo) {
@Test
@Order(5)
public void testTakeSellBSQOffer(final TestInfo testInfo) {
@SuppressWarnings("deprecation")
TakeSellBSQOfferTest test = new TakeSellBSQOfferTest();
test.testTakeAlicesBuyBTCForBSQOffer(testInfo);
test.testAlicesConfirmPaymentStarted(testInfo);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ enum class OS {
}

fun getOS(): OS {
val osName = System.getProperty("os.name").toLowerCase(Locale.US)
val osName = System.getProperty("os.name").lowercase(Locale.US)
if (isLinux(osName)) {
return OS.LINUX
} else if (isMacOs(osName)) {
Expand All @@ -29,4 +29,4 @@ private fun isMacOs(osName: String): Boolean {

private fun isWindows(osName: String): Boolean {
return osName.contains("win")
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package bisq.gradle.tasks

import java.util.*

object PgpFingerprint {
fun normalize(fingerprint: String): String =
fingerprint.filterNot { it.isWhitespace() } // Remove all spaces
.toLowerCase()
}
.lowercase(Locale.getDefault())
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ enum class OS {
}

fun getOS(): OS {
val osName = System.getProperty("os.name").toLowerCase(Locale.US)
val osName = System.getProperty("os.name").lowercase(Locale.US)
if (isLinux(osName)) {
return OS.LINUX
} else if (isMacOs(osName)) {
Expand Down
1 change: 1 addition & 0 deletions core/src/main/java/bisq/core/offer/OpenOfferManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -956,6 +956,7 @@ public void onFault(String errorMessage) {
// Update persisted offer if a new capability is required after a software update
///////////////////////////////////////////////////////////////////////////////////////////

@SuppressWarnings("deprecation")
private void maybeUpdatePersistedOffers() {
// We need to clone to avoid ConcurrentModificationException
ArrayList<OpenOffer> openOffersClone = new ArrayList<>(openOffers.getList());
Expand Down
2 changes: 2 additions & 0 deletions core/src/main/java/bisq/core/offer/bisq_v1/OfferPayload.java
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ public byte[] getHash() {
// PROTO BUFFER
///////////////////////////////////////////////////////////////////////////////////////////

@SuppressWarnings("deprecation")
@Override
public protobuf.StoragePayload toProtoMessage() {
protobuf.OfferPayload.Builder builder = protobuf.OfferPayload.newBuilder()
Expand Down Expand Up @@ -280,6 +281,7 @@ public protobuf.StoragePayload toProtoMessage() {
return protobuf.StoragePayload.newBuilder().setOfferPayload(builder).build();
}

@SuppressWarnings("deprecation")
public static OfferPayload fromProto(protobuf.OfferPayload proto) {
checkArgument(!proto.getOfferFeePaymentTxId().isEmpty(), "OfferFeePaymentTxId must be set in PB.OfferPayload");
List<String> acceptedBankIds = proto.getAcceptedBankIdsList().isEmpty() ?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static AchTransferAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.BankAccountPayload bankAccountPayloadPB = countryBasedPaymentAccountPayload.getBankAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static AdvancedCashAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new AdvancedCashAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static AliPayAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new AliPayAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static PaymentAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.AmazonGiftCardAccountPayload amazonGiftCardAccountPayload = proto.getAmazonGiftCardAccountPayload();
return new AmazonGiftCardAccountPayload(proto.getPaymentMethodId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ public Message toProtoMessage() {
).build();
}

@SuppressWarnings("deprecation")
public static AustraliaPayidAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.AustraliaPayidPayload AustraliaPayidPayload = proto.getAustraliaPayidPayload();
return new AustraliaPayidAccountPayload(proto.getPaymentMethodId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static BizumAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.BizumAccountPayload paytmAccountPayloadPB = countryBasedPaymentAccountPayload.getBizumAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static CapitualAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new CapitualAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static CashByMailAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new CashByMailAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static PaymentAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.CashDepositAccountPayload cashDepositAccountPayload = countryBasedPaymentAccountPayload.getCashDepositAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static CelPayAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new CelPayAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static ClearXchangeAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new ClearXchangeAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static CryptoCurrencyAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new CryptoCurrencyAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static DomesticWireTransferAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.BankAccountPayload bankAccountPayloadPB = countryBasedPaymentAccountPayload.getBankAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static PaymentAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.F2FAccountPayload f2fAccountPayloadPB = countryBasedPaymentAccountPayload.getF2FAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ private FasterPaymentsAccountPayload(String paymentMethod,
this.email = email;
}

@SuppressWarnings("deprecation")
@Override
public Message toProtoMessage() {
return getPaymentAccountPayloadBuilder()
Expand All @@ -82,6 +83,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static FasterPaymentsAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new FasterPaymentsAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static HalCashAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new HalCashAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static ImpsAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.IfscBasedAccountPayload ifscBasedAccountPayloadPB = countryBasedPaymentAccountPayload.getIfscBasedAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static InstantCryptoCurrencyPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new InstantCryptoCurrencyPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static InteracETransferAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new InteracETransferAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ public Message toProtoMessage() {
).build();
}

@SuppressWarnings("deprecation")
public static JapanBankAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.JapanBankAccountPayload japanBankAccountPayload = proto.getJapanBankAccountPayload();
return new JapanBankAccountPayload(proto.getPaymentMethodId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static MercadoPagoAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.MercadoPagoAccountPayload mercadoPagoAccountPayloadPB = countryBasedPaymentAccountPayload.getMercadoPagoAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static MoneseAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new MoneseAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static MoneyBeamAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new MoneyBeamAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static PaymentAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.MoneyGramAccountPayload moneyGramAccountPayload = proto.getMoneyGramAccountPayload();
return new MoneyGramAccountPayload(proto.getPaymentMethodId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static NationalBankAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.BankAccountPayload bankAccountPayloadPB = countryBasedPaymentAccountPayload.getBankAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static NeftAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.IfscBasedAccountPayload ifscBasedAccountPayloadPB = countryBasedPaymentAccountPayload.getIfscBasedAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static NequiAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.NequiAccountPayload paytmAccountPayloadPB = countryBasedPaymentAccountPayload.getNequiAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static PaxumAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new PaxumAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ protected PaymentAccountPayload(String paymentMethodId,
}

protected protobuf.PaymentAccountPayload.Builder getPaymentAccountPayloadBuilder() {
@SuppressWarnings("deprecation")
final protobuf.PaymentAccountPayload.Builder builder = protobuf.PaymentAccountPayload.newBuilder()
.setPaymentMethodId(paymentMethodId)
.setMaxTradePeriod(maxTradePeriod)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static PayseraAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new PayseraAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static PaytmAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.PaytmAccountPayload paytmAccountPayloadPB = countryBasedPaymentAccountPayload.getPaytmAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static PerfectMoneyAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new PerfectMoneyAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static PixAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.PixAccountPayload paytmAccountPayloadPB = countryBasedPaymentAccountPayload.getPixAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static PopmoneyAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new PopmoneyAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static PromptPayAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
return new PromptPayAccountPayload(proto.getPaymentMethodId(),
proto.getId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public Message toProtoMessage() {
return getPaymentAccountPayloadBuilder().setRevolutAccountPayload(revolutBuilder).build();
}


@SuppressWarnings("deprecation")
public static RevolutAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.RevolutAccountPayload revolutAccountPayload = proto.getRevolutAccountPayload();
return new RevolutAccountPayload(proto.getPaymentMethodId(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static RtgsAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.IfscBasedAccountPayload ifscBasedAccountPayloadPB = countryBasedPaymentAccountPayload.getIfscBasedAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static SameBankAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.BankAccountPayload bankAccountPayload = countryBasedPaymentAccountPayload.getBankAccountPayload();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ public Message toProtoMessage() {
.build();
}

@SuppressWarnings("deprecation")
public static SatispayAccountPayload fromProto(protobuf.PaymentAccountPayload proto) {
protobuf.CountryBasedPaymentAccountPayload countryBasedPaymentAccountPayload = proto.getCountryBasedPaymentAccountPayload();
protobuf.SatispayAccountPayload accountPayloadPB = countryBasedPaymentAccountPayload.getSatispayAccountPayload();
Expand Down
Loading
Loading