diff options
author | Cristian Mircea Messel <mess110@gmail.com> | 2017-10-10 19:36:27 +0300 |
---|---|---|
committer | Cristian Mircea Messel <mess110@gmail.com> | 2017-10-11 23:39:47 +0300 |
commit | 149dffd3b2a137d575ad19b8c0b13345efe3ada1 (patch) | |
tree | ac8d63ea3fb651e0678619ef8a825d92a44f66b2 /test/functional/wallet.py | |
parent | 892809309c1bc370677241a715e57a2744f94323 (diff) |
[rpc] mempoolinfo should take ::minRelayTxFee into account
Diffstat (limited to 'test/functional/wallet.py')
-rwxr-xr-x | test/functional/wallet.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/wallet.py b/test/functional/wallet.py index 9d8ae50354..d0ca24119c 100755 --- a/test/functional/wallet.py +++ b/test/functional/wallet.py @@ -33,6 +33,9 @@ class WalletTest(BitcoinTestFramework): assert_equal(len(self.nodes[1].listunspent()), 0) assert_equal(len(self.nodes[2].listunspent()), 0) + self.log.info("Check for mempoolminfee in getmempoolinfo") + assert_equal(self.nodes[0].getmempoolinfo()['mempoolminfee'], Decimal('0.00001000')) + self.log.info("Mining blocks...") self.nodes[0].generate(1) |