From ca023f2b5ee3dbae517747b954f29653faedfc84 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 9 Oct 2024 03:57:14 +1030 Subject: [PATCH] pyln-testing: understand `gossip_store_file` arg in get_nodes. Signed-off-by: Rusty Russell --- contrib/pyln-testing/pyln/testing/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/pyln-testing/pyln/testing/utils.py b/contrib/pyln-testing/pyln/testing/utils.py index 9d1ac4a77d..ab8eb4c330 100644 --- a/contrib/pyln-testing/pyln/testing/utils.py +++ b/contrib/pyln-testing/pyln/testing/utils.py @@ -1544,6 +1544,7 @@ class NodeFactory(object): 'wait_for_bitcoind_sync', 'allow_bad_gossip', 'start', + 'gossip_store_file', ] node_opts = {k: v for k, v in opts.items() if k in node_opt_keys} cli_opts = {k: v for k, v in opts.items() if k not in node_opt_keys}