Skip to content

Commit 08634e8

Browse files
fix typos in logging messages
1 parent d447ded commit 08634e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/functional/mempool_limit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def run_test(self):
3636
miniwallet = MiniWallet(node)
3737
relayfee = node.getnetworkinfo()['relayfee']
3838

39-
self.log.info('Check that mempoolminfee is minrelytxfee')
39+
self.log.info('Check that mempoolminfee is minrelaytxfee')
4040
assert_equal(node.getmempoolinfo()['minrelaytxfee'], Decimal('0.00001000'))
4141
assert_equal(node.getmempoolinfo()['mempoolminfee'], Decimal('0.00001000'))
4242

@@ -68,7 +68,7 @@ def run_test(self):
6868
# Initial tx created should not be present in the mempool anymore as it had a lower fee rate
6969
assert tx_to_be_evicted_id not in node.getrawmempool()
7070

71-
self.log.info('Check that mempoolminfee is larger than minrelytxfee')
71+
self.log.info('Check that mempoolminfee is larger than minrelaytxfee')
7272
assert_equal(node.getmempoolinfo()['minrelaytxfee'], Decimal('0.00001000'))
7373
assert_greater_than(node.getmempoolinfo()['mempoolminfee'], Decimal('0.00001000'))
7474

0 commit comments

Comments
 (0)