Add comment

This commit is contained in:
chimp1984 2020-08-31 09:51:53 -05:00
parent 59ebefc7d9
commit 591011e516
No known key found for this signature in database
GPG key ID: 9801B4EC591F90E3

View file

@ -20,6 +20,10 @@ package bisq.desktop.util.validation;
public final class RevolutValidator extends LengthValidator {
public RevolutValidator() {
// Not sure what are requirements for Revolut user names
// Please keep in mind that even we force users to set user name at startup we should handle also the case
// that the old accountID as phone number or email is displayed at the username text field and we do not
// want to break validation in those cases. So being too strict on the validators might cause more troubles
// as its worth...
super(5, 100);
}