We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ecada9 commit 74ddd30Copy full SHA for 74ddd30
packages/crypto/src/secp256k1.rs
@@ -380,7 +380,7 @@ mod tests {
380
let message_hash = Sha256::digest(message);
381
assert_eq!(hash.as_slice(), message_hash.as_slice());
382
383
- // Since the recovery param is mossing in the test vectors, we try both 0 and 1
+ // Since the recovery param is missing in the test vectors, we try both 0 and 1
384
let try0 = secp256k1_recover_pubkey(&message_hash, &signature, 0);
385
let try1 = secp256k1_recover_pubkey(&message_hash, &signature, 1);
386
match (try0, try1) {
0 commit comments