Remove unnecessary return statements
Found by clippy. We don't need a `return` for the final statement.
This commit is contained in:
parent
4e87e6fe94
commit
ed29f12216
|
@ -185,11 +185,11 @@ impl KeyPair {
|
||||||
tweak.as_c_ptr(),
|
tweak.as_c_ptr(),
|
||||||
);
|
);
|
||||||
|
|
||||||
return if err == 1 {
|
if err == 1 {
|
||||||
Ok(())
|
Ok(())
|
||||||
} else {
|
} else {
|
||||||
Err(Error::InvalidTweak)
|
Err(Error::InvalidTweak)
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -465,11 +465,11 @@ impl<C: Signing> Secp256k1<C> {
|
||||||
pubkey.as_c_ptr(),
|
pubkey.as_c_ptr(),
|
||||||
);
|
);
|
||||||
|
|
||||||
return if ret == 1 {
|
if ret == 1 {
|
||||||
Ok(())
|
Ok(())
|
||||||
} else {
|
} else {
|
||||||
Err(Error::InvalidSignature)
|
Err(Error::InvalidSignature)
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue