mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 06:41:44 +01:00
bitcoin/signature: fix compilation with #define DEBUG
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
eb370976da
commit
e669baec1c
1 changed files with 2 additions and 2 deletions
|
@ -55,8 +55,8 @@ static void dump_tx(const char *msg,
|
|||
fprintf(stderr, "%02x", script[i]);
|
||||
if (key) {
|
||||
fprintf(stderr, "\nPubkey: ");
|
||||
for (i = 0; i < pubkey_len(key); i++)
|
||||
fprintf(stderr, "%02x", key->key[i]);
|
||||
for (i = 0; i < sizeof(key->der); i++)
|
||||
fprintf(stderr, "%02x", key->der[i]);
|
||||
fprintf(stderr, "\n");
|
||||
}
|
||||
if (h) {
|
||||
|
|
Loading…
Add table
Reference in a new issue