From f95ca4ed3e573d6d6bc912f42927e0d2cafafb8d Mon Sep 17 00:00:00 2001 From: Konstantin Akimov Date: Thu, 29 Aug 2024 13:59:25 +0700 Subject: [PATCH] fix: unify with bitcoin: removed requirement of txindex=0 --- test/functional/p2p_node_network_limited.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/p2p_node_network_limited.py b/test/functional/p2p_node_network_limited.py index 10b88da23f..c6a9829c51 100755 --- a/test/functional/p2p_node_network_limited.py +++ b/test/functional/p2p_node_network_limited.py @@ -32,7 +32,7 @@ class NodeNetworkLimitedTest(BitcoinTestFramework): def set_test_params(self): self.setup_clean_chain = True self.num_nodes = 3 - self.extra_args = [['-prune=550', '-txindex=0', '-addrmantest'], [], []] + self.extra_args = [['-prune=550', '-addrmantest'], [], []] def disconnect_all(self): self.disconnect_nodes(0, 1)