mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
functional test: ensure confirmed utxo being sourced for 2nd chain
This commit is contained in:
parent
3310a965bd
commit
07aba8dd21
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ class MempoolPackagesTest(BitcoinTestFramework):
|
|||
for _ in range(DEFAULT_ANCESTOR_LIMIT - 4):
|
||||
utxo, = self.chain_tx([utxo])
|
||||
chain.append(utxo)
|
||||
second_chain, = self.chain_tx([self.wallet.get_utxo()])
|
||||
second_chain, = self.chain_tx([self.wallet.get_utxo(confirmed_only=True)])
|
||||
|
||||
# Check mempool has DEFAULT_ANCESTOR_LIMIT + 1 transactions in it
|
||||
assert_equal(len(self.nodes[0].getrawmempool()), DEFAULT_ANCESTOR_LIMIT + 1)
|
||||
|
|
Loading…
Add table
Reference in a new issue