From c75f9f43182515bc3494809e9288aa5739497d87 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 15 Jan 2019 14:22:27 +1030 Subject: [PATCH] devtools/bolt11-cli: print min_final_cltv_expiry. Signed-off-by: Rusty Russell --- devtools/bolt11-cli.c | 1 + 1 file changed, 1 insertion(+) diff --git a/devtools/bolt11-cli.c b/devtools/bolt11-cli.c index 5432896a5..fb36513f2 100644 --- a/devtools/bolt11-cli.c +++ b/devtools/bolt11-cli.c @@ -103,6 +103,7 @@ int main(int argc, char *argv[]) type_to_string(ctx, struct pubkey, &b11->receiver_id)); printf("payment_hash: %s\n", tal_hexstr(ctx, &b11->payment_hash, sizeof(b11->payment_hash))); + printf("min_final_cltv_expiry: %u\n", b11->min_final_cltv_expiry); if (b11->msatoshi) printf("msatoshi: %"PRIu64"\n", *b11->msatoshi); if (b11->description)