Update GroestlcoinAddressValidator.java

Changed starting letter
This commit is contained in:
nuggetbram 2015-01-14 16:32:28 +11:00
parent 81365a6c68
commit e8b0bffb21
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public class GroestlcoinAddressValidator implements ICryptoAddressValidator {
}
private static boolean isGroestlcoinAddressValid(String address) {
if (address.startsWith("G")) {
if (address.startsWith("F")) {
try {
Base58.decodeToBigInteger(address);
Base58.decodeChecked(address);