diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-10-19 09:47:02 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-10-19 09:42:40 +0200 |
commit | fa5a91a352364fe615930f1e7d991671a54ddf2c (patch) | |
tree | 85f0bebca07b257ac8f2905332c9ac8b04a0d659 | |
parent | fa3af2c0d3b3ed185fb8c6105dc2d26dc66632af (diff) |
test: Fix typo (one tx is enough) in p2p_feefilter
-rwxr-xr-x | test/functional/p2p_feefilter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/p2p_feefilter.py b/test/functional/p2p_feefilter.py index 4cc18eec3c..51b7623fe3 100755 --- a/test/functional/p2p_feefilter.py +++ b/test/functional/p2p_feefilter.py @@ -108,7 +108,7 @@ class FeeFilterTest(BitcoinTestFramework): # to 35 entries in an inv, which means that when this next transaction # is eligible for relay, the prior transactions from node1 are eligible # as well. - txids = [miniwallet.send_self_transfer(fee_rate=Decimal('0.00020000'), from_node=node0)['wtxid'] for _ in range(3)] + txids = [miniwallet.send_self_transfer(fee_rate=Decimal('0.00020000'), from_node=node0)['wtxid'] for _ in range(1)] conn.wait_for_invs_to_match(txids) conn.clear_invs() self.sync_mempools() # must be sure node 1 has received all txs |