diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-09-20 15:51:28 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-09-20 15:49:23 +0200 |
commit | fa4db9261725de8c0e5c73d13df1cddd6bbaeab0 (patch) | |
tree | 804e4d9e575458b25cf745b5982e9c7f05bebc79 /test/functional/mempool_persist.py | |
parent | fafb7b7a892b24405d6b6291d6d72f0e88462f2f (diff) |
test: Remove unused self.connect_nodes
The nodes are stopped in the next line, no need to connect them
Diffstat (limited to 'test/functional/mempool_persist.py')
-rwxr-xr-x | test/functional/mempool_persist.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/functional/mempool_persist.py b/test/functional/mempool_persist.py index b284755b27..832ef22011 100755 --- a/test/functional/mempool_persist.py +++ b/test/functional/mempool_persist.py @@ -103,7 +103,6 @@ class MempoolPersistTest(BitcoinTestFramework): assert_equal(len(self.nodes[0].getpeerinfo()), 0) assert_equal(len(self.nodes[0].p2ps), 0) self.mini_wallet.send_self_transfer(from_node=self.nodes[0]) - self.connect_nodes(0, 2) self.log.debug("Stop-start the nodes. Verify that node0 has the transactions in its mempool and node1 does not. Verify that node2 calculates its balance correctly after loading wallet transactions.") self.stop_nodes() |