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 <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2023-07-24 13:19:56 +09:30
parent 248b34acec
commit 2042b50978

View File

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