Fix RegexAddressValidator

This commit is contained in:
ridd 2018-09-16 19:15:08 +02:00 committed by GitHub
parent f5f7ad0ce2
commit f7cee1f80e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,6 @@ import bisq.asset.RegexAddressValidator;
public class Croat extends Coin {
public Croat() {
super("Croat", "CROAT", new RegexAddressValidator("^C[1-9A-Za-z^OIl]{94}"));
super("Croat", "CROAT", new RegexAddressValidator("^C[1-9A-Za-z]{94}"));
}
}