From 27ef4b98c189e00a43a5c3f2ec556117c79042f6 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Sun, 11 Feb 2024 20:59:41 +1030 Subject: [PATCH] devtools: remove warning message from dump-gossipstore. It prints a message to stderr, but actually it's fine with this version: ``` dump-gossipstore: UNKNOWN GOSSIP minor VERSION 14 (expected 12) ``` Signed-off-by: Rusty Russell --- devtools/dump-gossipstore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/dump-gossipstore.c b/devtools/dump-gossipstore.c index a7fae9145..e096d49c7 100644 --- a/devtools/dump-gossipstore.c +++ b/devtools/dump-gossipstore.c @@ -12,7 +12,7 @@ /* Current versions we support */ #define GSTORE_MAJOR 0 -#define GSTORE_MINOR 12 +#define GSTORE_MINOR 14 int main(int argc, char *argv[]) {