Skip to content

Commit

Permalink
chore: fix the constants import (1)
Browse files Browse the repository at this point in the history
  • Loading branch information
duguorong009 committed Dec 18, 2023
1 parent dc54a13 commit c917ca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/secp256k1/curve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ impl Secp256k1 {
// Z = -11 (reference: <https://www.rfc-editor.org/rfc/rfc9380.html#name-suites-for-secp256k1>)
// 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc24
#[allow(dead_code)]
const SSWU_Z: Fp = Fp([
const SSWU_Z: Fp = Fp::from_raw([
0xfffffffefffffc24,
0xffffffffffffffff,
0xffffffffffffffff,
Expand Down

0 comments on commit c917ca9

Please sign in to comment.