Merge pull request #4865

8e44f2e Clarify 'compressed nor uncompressed' error message (Peter Todd)
This commit is contained in:
Pieter Wuille 2014-09-08 15:13:46 +02:00
commit df623d83da
No known key found for this signature in database
GPG Key ID: 8F653255C87992E0
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ bool IsCanonicalPubKey(const valtype &vchPubKey, unsigned int flags) {
if (vchPubKey.size() != 33)
return error("Non-canonical public key: invalid length for compressed key");
} else {
return error("Non-canonical public key: compressed nor uncompressed");
return error("Non-canonical public key: neither compressed nor uncompressed");
}
return true;
}