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 3151352 commit f67081aCopy full SHA for f67081a
secp256k1-sys/src/lib.rs
@@ -43,6 +43,7 @@ pub const SECP256K1_START_VERIFY: c_uint = 1 | (1 << 8);
43
/// Flag for context to enable signing precomputation
44
pub const SECP256K1_START_SIGN: c_uint = 1 | (1 << 9);
45
/// Flag for keys to indicate uncompressed serialization format
46
+#[allow(unused_parens)]
47
pub const SECP256K1_SER_UNCOMPRESSED: c_uint = (1 << 1);
48
/// Flag for keys to indicate compressed serialization format
49
pub const SECP256K1_SER_COMPRESSED: c_uint = (1 << 1) | (1 << 8);
0 commit comments