Skip to content

Commit 9547d4e

Browse files
committed
external/libwally-core: update to v0.8.9
1 parent 7cae56b commit 9547d4e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

external/libwally-core

src/keystore.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ bool keystore_secp256k1_schnorr_bip86_sign(
784784
const secp256k1_context* ctx = wally_get_secp_context();
785785
uint8_t aux_rand[32] = {0};
786786
random_32_bytes(aux_rand);
787-
if (secp256k1_schnorrsig_sign(ctx, sig64_out, msg32, &keypair, aux_rand) != 1) {
787+
if (secp256k1_schnorrsig_sign32(ctx, sig64_out, msg32, &keypair, aux_rand) != 1) {
788788
return false;
789789
}
790790
return secp256k1_schnorrsig_verify(ctx, sig64_out, msg32, 32, &pubkey) == 1;

0 commit comments

Comments
 (0)