diff options
author | aitorjs <aitiba@gmail.com> | 2021-08-25 19:46:27 +0200 |
---|---|---|
committer | aitorjs <aitiba@gmail.com> | 2021-08-25 22:55:10 +0200 |
commit | 0d9fdd329e81cb171d687042290f4e6b1507d7f4 (patch) | |
tree | f4043afb8cd9d8a9b3062a921c42cb0965469267 | |
parent | dd455ecfa085f72dea5fe192491b7d0b474fbed1 (diff) |
test, doc: refer to the correct variable names in p2p_invalid_tx.py
-rwxr-xr-x | test/functional/p2p_invalid_tx.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/p2p_invalid_tx.py b/test/functional/p2p_invalid_tx.py index 8783c244c3..8fef2d173f 100755 --- a/test/functional/p2p_invalid_tx.py +++ b/test/functional/p2p_invalid_tx.py @@ -141,9 +141,9 @@ class InvalidTxRequestTest(BitcoinTestFramework): tx_orphan_2_valid, # The valid transaction (with sufficient fee) ] } - # Transactions that do not end up in the mempool - # tx_orphan_no_fee, because it has too low fee (p2ps[0] is not disconnected for relaying that tx) - # tx_orphan_invalid, because it has negative fee (p2ps[1] is disconnected for relaying that tx) + # Transactions that do not end up in the mempool: + # tx_orphan_2_no_fee, because it has too low fee (p2ps[0] is not disconnected for relaying that tx) + # tx_orphan_2_invalid, because it has negative fee (p2ps[1] is disconnected for relaying that tx) self.wait_until(lambda: 1 == len(node.getpeerinfo()), timeout=12) # p2ps[1] is no longer connected assert_equal(expected_mempool, set(node.getrawmempool())) |