mirror of
https://github.com/boldsuck/haveno.git
synced 2025-01-13 11:34:35 +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) {
|
PaymentAccountForm getPaymentAccountForm(String paymentMethodId) {
|
||||||
return PaymentAccountForm.getForm(paymentMethodId);
|
return PaymentAccountForm.getForm(paymentMethodId.toUpperCase());
|
||||||
}
|
}
|
||||||
|
|
||||||
PaymentAccountForm getPaymentAccountForm(PaymentAccount paymentAccount) {
|
PaymentAccountForm getPaymentAccountForm(PaymentAccount paymentAccount) {
|
||||||
|
|
Loading…
Reference in a new issue