From c46d2108221c0c6cf43aafb30404070a60cf7cbf Mon Sep 17 00:00:00 2001 From: woodser Date: Tue, 29 Aug 2023 06:46:19 -0400 Subject: [PATCH] payment method ids are case insensitive --- .../main/java/haveno/core/api/CorePaymentAccountsService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/haveno/core/api/CorePaymentAccountsService.java b/core/src/main/java/haveno/core/api/CorePaymentAccountsService.java index 6a6f2e87bb..0339929013 100644 --- a/core/src/main/java/haveno/core/api/CorePaymentAccountsService.java +++ b/core/src/main/java/haveno/core/api/CorePaymentAccountsService.java @@ -106,7 +106,7 @@ class CorePaymentAccountsService { } PaymentAccountForm getPaymentAccountForm(String paymentMethodId) { - return PaymentAccountForm.getForm(paymentMethodId); + return PaymentAccountForm.getForm(paymentMethodId.toUpperCase()); } PaymentAccountForm getPaymentAccountForm(PaymentAccount paymentAccount) {