From 2042b50978937e424a9789ab49539ae5e9ffed27 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 24 Jul 2023 13:19:56 +0930 Subject: [PATCH] plugins/bcli: update minimum required bitcoind version. Less than 22 is obsolete anyway, so we should increment this from 16.0 at least! Closes: #6234 Signed-off-by: Rusty Russell --- plugins/bcli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/bcli.c b/plugins/bcli.c index 759a21010..ce07b78a6 100644 --- a/plugins/bcli.c +++ b/plugins/bcli.c @@ -918,7 +918,7 @@ static void parse_getnetworkinfo_result(struct plugin *p, const char *buf) { const jsmntok_t *result; bool tx_relay; - u32 min_version = 160000; + u32 min_version = 220000; const char *err; result = json_parse_simple(NULL, buf, strlen(buf));