Skip to content

Commit fca5d20

Browse files
Update packages/crypto/src/secp256k1.rs
Co-authored-by: Mauro Lacy <maurolacy@users.noreply.github.com>
1 parent 1104982 commit fca5d20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/crypto/src/secp256k1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ mod tests {
385385
let try1 = secp256k1_recover_pubkey(&message_hash, &signature, 1);
386386
match (try0, try1) {
387387
(Ok(recovered0), Ok(recovered1)) => {
388-
// Got two different pubkeys. Without the recoverey param, we don't know which one is the right one.
388+
// Got two different pubkeys. Without the recovery param, we don't know which one is the right one.
389389
assert!(recovered0 == public_key || recovered1 == public_key)
390390
},
391391
(Ok(recovered), Err(_)) => assert_eq!(recovered, public_key),

0 commit comments

Comments
 (0)