mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-05 07:14:36 +01:00
test: Don't assume size_t == u64 in tests
This commit is contained in:
committed by
Rusty Russell
parent
058600bee6
commit
0137aea7fc
@@ -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]));
|
||||
|
||||
Reference in New Issue
Block a user