Change error enum for KeyPair::from_seckey_slice

Also does another nit in the file which removes a trailing whitespace
This commit is contained in:
sanket1729 2021-06-27 17:20:23 -07:00
parent 05f4278499
commit 5bac4e4bac
1 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ impl KeyPair {
data: &[u8],
) -> Result<KeyPair, Error> {
if data.is_empty() || data.len() != constants::SECRET_KEY_SIZE {
return Err(InvalidPublicKey);
return Err(InvalidSecretKey);
}
unsafe {
@ -313,7 +313,7 @@ impl PublicKey {
/// Tweak an x-only PublicKey by adding the generator multiplied with the given tweak to it.
///
/// Returns a boolean representing the parity of the tweaked key, which can be provided to
/// Returns a boolean representing the parity of the tweaked key, which can be provided to
/// `tweak_add_check` which can be used to verify a tweak more efficiently than regenerating
/// it and checking equality. Will return an error if the resulting key would be invalid or
/// if the tweak was not a 32-byte length slice.