diff options
author | ShubhamPalriwala <spalriwalau@gmail.com> | 2021-09-14 00:58:25 +0530 |
---|---|---|
committer | ShubhamPalriwala <spalriwalau@gmail.com> | 2021-09-14 00:58:25 +0530 |
commit | 08634e82c68ea1be79e1395f4f551082f497023f (patch) | |
tree | cb086aae04a4677c394bd6d9bff429c3a91b388c | |
parent | d447ded6babebe7c7948e585c9e78bf34dbef226 (diff) |
fix typos in logging messages
-rwxr-xr-x | test/functional/mempool_limit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/mempool_limit.py b/test/functional/mempool_limit.py index 6d9b79e116..c82dbb3f3d 100755 --- a/test/functional/mempool_limit.py +++ b/test/functional/mempool_limit.py @@ -36,7 +36,7 @@ class MempoolLimitTest(BitcoinTestFramework): miniwallet = MiniWallet(node) relayfee = node.getnetworkinfo()['relayfee'] - self.log.info('Check that mempoolminfee is minrelytxfee') + self.log.info('Check that mempoolminfee is minrelaytxfee') assert_equal(node.getmempoolinfo()['minrelaytxfee'], Decimal('0.00001000')) assert_equal(node.getmempoolinfo()['mempoolminfee'], Decimal('0.00001000')) @@ -68,7 +68,7 @@ class MempoolLimitTest(BitcoinTestFramework): # Initial tx created should not be present in the mempool anymore as it had a lower fee rate assert tx_to_be_evicted_id not in node.getrawmempool() - self.log.info('Check that mempoolminfee is larger than minrelytxfee') + self.log.info('Check that mempoolminfee is larger than minrelaytxfee') assert_equal(node.getmempoolinfo()['minrelaytxfee'], Decimal('0.00001000')) assert_greater_than(node.getmempoolinfo()['mempoolminfee'], Decimal('0.00001000')) |