Merge pull request #10 from nuggetbram/patch-3

Update GroestlcoinAddressValidator.java
This commit is contained in:
GENERAL BYTES 2015-01-14 17:11:40 +01:00
commit e904fd1c81
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);