mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-12-27 00:09:34 -05:00
payment method ids are case insensitive
This commit is contained in:
parent
6e768acd1b
commit
c46d210822
@ -106,7 +106,7 @@ class CorePaymentAccountsService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
PaymentAccountForm getPaymentAccountForm(String paymentMethodId) {
|
PaymentAccountForm getPaymentAccountForm(String paymentMethodId) {
|
||||||
return PaymentAccountForm.getForm(paymentMethodId);
|
return PaymentAccountForm.getForm(paymentMethodId.toUpperCase());
|
||||||
}
|
}
|
||||||
|
|
||||||
PaymentAccountForm getPaymentAccountForm(PaymentAccount paymentAccount) {
|
PaymentAccountForm getPaymentAccountForm(PaymentAccount paymentAccount) {
|
||||||
|
Loading…
Reference in New Issue
Block a user