diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2024-04-16 02:30:51 +0200 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2024-05-05 12:36:51 +0200 |
commit | dd8fa861939d5b8bdd844ad7cab015d08533a91a (patch) | |
tree | 68b90b67ee59b7c7e0d3b05c7dd916ee88676341 /test/functional/p2p_1p1c_network.py | |
parent | b2037ad4aeb4e16c7eb1e5756d0d1ee20172344b (diff) |
test: use tagged ephemeral MiniWallet instance in fill_mempool
Diffstat (limited to 'test/functional/p2p_1p1c_network.py')
-rwxr-xr-x | test/functional/p2p_1p1c_network.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/p2p_1p1c_network.py b/test/functional/p2p_1p1c_network.py index 57de90a91e..ea59248506 100755 --- a/test/functional/p2p_1p1c_network.py +++ b/test/functional/p2p_1p1c_network.py @@ -47,8 +47,7 @@ class PackageRelayTest(BitcoinTestFramework): self.supports_cli = False def raise_network_minfee(self): - filler_wallet = MiniWallet(self.nodes[0]) - fill_mempool(self, self.nodes[0], filler_wallet) + fill_mempool(self, self.nodes[0]) self.log.debug("Wait for the network to sync mempools") self.sync_mempools() |