bitcoin/signature: fix compilation with #define DEBUG

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2016-04-11 16:28:23 +09:30
parent eb370976da
commit e669baec1c
1 changed files with 2 additions and 2 deletions

View File

@ -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) {