Viacoin: address validation remove else

This commit is contained in:
romanornr 2017-11-09 00:11:05 +01:00
parent ddb5273ecf
commit 3f5f0d7665
No known key found for this signature in database
GPG Key ID: 3F92368F0D21A206
1 changed files with 2 additions and 3 deletions

View File

@ -36,9 +36,8 @@ public class ViacoinAddressValidator implements ICryptoAddressValidator {
return false;
}
return true;
}else{
return false;
}
return false;
}
@Override
@ -50,4 +49,4 @@ public class ViacoinAddressValidator implements ICryptoAddressValidator {
public boolean mustBeBase58Address() {
return true;
}
}
}