Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
klkvr committed Dec 26, 2024
1 parent ca04bf7 commit 877cd3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/primitives/src/signature/primitive_sig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ mod signature_serde {
(y_parity, v, r, s)
} else {
let NonHumanReadableRepr((r, s, y_parity)) = <_>::deserialize(deserializer)?;
(y_parity, None, r, s)
(Some(y_parity), None, r, s)
};

// Attempt to extract `y_parity` bit from either `yParity` key or `v` value.
Expand Down

0 comments on commit 877cd3a

Please sign in to comment.