diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-09-20 15:48:09 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-09-20 15:49:27 +0200 |
commit | faae0988d6abb50039026a49543eef134eb9103f (patch) | |
tree | 06fa2a8dba13a7c2c333fc6ae5eaf8b9146d62a4 /test/functional/mempool_persist.py | |
parent | fa4db9261725de8c0e5c73d13df1cddd6bbaeab0 (diff) |
test: Check other fields are loaded correctly as well
Diffstat (limited to 'test/functional/mempool_persist.py')
-rwxr-xr-x | test/functional/mempool_persist.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/functional/mempool_persist.py b/test/functional/mempool_persist.py index 832ef22011..015876cbbf 100755 --- a/test/functional/mempool_persist.py +++ b/test/functional/mempool_persist.py @@ -94,7 +94,8 @@ class MempoolPersistTest(BitcoinTestFramework): assert_equal(total_fee_old, self.nodes[0].getmempoolinfo()['total_fee']) assert_equal(total_fee_old, sum(v['fees']['base'] for k, v in self.nodes[0].getrawmempool(verbose=True).items())) - tx_creation_time = self.nodes[0].getmempoolentry(txid=last_txid)['time'] + last_entry = self.nodes[0].getmempoolentry(txid=last_txid) + tx_creation_time = last_entry['time'] assert_greater_than_or_equal(tx_creation_time, tx_creation_time_lower) assert_greater_than_or_equal(tx_creation_time_higher, tx_creation_time) @@ -122,8 +123,8 @@ class MempoolPersistTest(BitcoinTestFramework): fees = self.nodes[0].getmempoolentry(txid=last_txid)['fees'] assert_equal(fees['base'] + Decimal('0.00001000'), fees['modified']) - self.log.debug('Verify time is loaded correctly') - assert_equal(tx_creation_time, self.nodes[0].getmempoolentry(txid=last_txid)['time']) + self.log.debug('Verify all fields are loaded correctly') + assert_equal(last_entry, self.nodes[0].getmempoolentry(txid=last_txid)) # Verify accounting of mempool transactions after restart is correct if self.is_sqlite_compiled(): |