mirror of
https://github.com/ElementsProject/lightning.git
synced 2026-08-18 13:08:13 +02:00
test: Don't assume size_t == u64 in tests
This commit is contained in:
parent
058600bee6
commit
0137aea7fc
1 changed files with 1 additions and 1 deletions
|
|
@ -269,7 +269,7 @@ static void report_htlcs(const struct bitcoin_tx *tx,
|
|||
wscript[i],
|
||||
x_remote_secretkey, remotekey,
|
||||
&remotesig[i]);
|
||||
printf("# signature for output %zi (htlc %zu)\n", i, htlc->id);
|
||||
printf("# signature for output %zi (htlc %"PRIu64")\n", i, htlc->id);
|
||||
printf("remote_htlc_signature = %s\n",
|
||||
type_to_string(tmpctx, secp256k1_ecdsa_signature,
|
||||
&remotesig[i]));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue