We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab98673 commit ab4efadCopy full SHA for ab4efad
test/functional/wallet_groups.py
@@ -41,6 +41,11 @@ def skip_test_if_missing_module(self):
41
42
def run_test(self):
43
self.log.info("Setting up")
44
+ # To take full use of immediate tx relay, all nodes need to be reachable
45
+ # via inbound peers, i.e. connect first to last to close the circle
46
+ # (the default test network topology looks like this:
47
+ # node0 <-- node1 <-- node2 <-- node3 <-- node4 <-- node5)
48
+ self.connect_nodes(0, self.num_nodes - 1)
49
# Mine some coins
50
self.generate(self.nodes[0], COINBASE_MATURITY + 1)
51
0 commit comments