mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-17 00:07:49 +00:00
payment method ids are case insensitive
This commit is contained in:
parent
6e768acd1b
commit
c46d210822
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ class CorePaymentAccountsService {
|
|||
}
|
||||
|
||||
PaymentAccountForm getPaymentAccountForm(String paymentMethodId) {
|
||||
return PaymentAccountForm.getForm(paymentMethodId);
|
||||
return PaymentAccountForm.getForm(paymentMethodId.toUpperCase());
|
||||
}
|
||||
|
||||
PaymentAccountForm getPaymentAccountForm(PaymentAccount paymentAccount) {
|
||||
|
|
Loading…
Reference in a new issue