We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3497998 commit 3fd2deeCopy full SHA for 3fd2dee
src/modules/schnorrsig/tests_impl.h
@@ -1010,7 +1010,7 @@ void test_s2c_opening(void) {
1010
* points' x-coordinates are uniformly random */
1011
if (secp256k1_schnorrsig_s2c_opening_parse(CTX, &opening, input) == 1) {
1012
CHECK(secp256k1_schnorrsig_s2c_opening_serialize(CTX, output, &opening) == 1);
1013
- /*CHECK(memcmp(output, input, sizeof(output)) == 0);*/
+ CHECK(secp256k1_memcmp_var(output, input, sizeof(output)) == 0);
1014
}
1015
testrand256(&input[1]);
1016
/* Set pubkey oddness tag to first bit of input[1] */
0 commit comments