Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ShubhamPalriwala committed Sep 10, 2021
1 parent 840cd47 commit 22c7392
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/functional/mempool_limit.py
Expand Up @@ -36,7 +36,7 @@ def run_test(self):
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'))

Expand Down Expand Up @@ -69,7 +69,7 @@ def run_test(self):
# 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'))

Expand Down

0 comments on commit 22c7392

Please sign in to comment.