mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-10-10 19:43:13 +02:00
test: use getmempoolentry instead of getrawmempool in functional tests when appropriate
This commit is contained in:
@@ -94,9 +94,7 @@ class MempoolUnbroadcastTest(BitcoinTestFramework):
|
||||
|
||||
self.log.info("Rebroadcast transaction and ensure it is not added to unbroadcast set when already in mempool")
|
||||
rpc_tx_hsh = node.sendrawtransaction(txFS["hex"])
|
||||
mempool = node.getrawmempool(True)
|
||||
assert rpc_tx_hsh in mempool
|
||||
assert not mempool[rpc_tx_hsh]['unbroadcast']
|
||||
assert not node.getmempoolentry(rpc_tx_hsh)['unbroadcast']
|
||||
|
||||
def test_txn_removal(self):
|
||||
self.log.info("Test that transactions removed from mempool are removed from unbroadcast set")
|
||||
|
Reference in New Issue
Block a user