diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-07-27 20:04:51 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-08-19 19:02:11 +0200 |
commit | fab2e23b579c44f1b4bed4d813bbe5a21eaa22c8 (patch) | |
tree | 7409c4da5d5b76eb6046a1441e0f120ae7f89f01 /test/functional/mempool_unbroadcast.py | |
parent | faf7e9280487d643cf59681df2711d72675b5ad4 (diff) |
Use generate* from TestFramework
The changes in feature_rbf can be reviewed with
--color-moved=dimmed-zebra --color-moved-ws=ignore-all-space
Diffstat (limited to 'test/functional/mempool_unbroadcast.py')
-rwxr-xr-x | test/functional/mempool_unbroadcast.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/mempool_unbroadcast.py b/test/functional/mempool_unbroadcast.py index 7d9e6c306d..be03be24ec 100755 --- a/test/functional/mempool_unbroadcast.py +++ b/test/functional/mempool_unbroadcast.py @@ -32,7 +32,7 @@ class MempoolUnbroadcastTest(BitcoinTestFramework): node = self.nodes[0] min_relay_fee = node.getnetworkinfo()["relayfee"] - utxos = create_confirmed_utxos(min_relay_fee, node, 10) + utxos = create_confirmed_utxos(self, min_relay_fee, node, 10) self.disconnect_nodes(0, 1) |