Add `AllowRevealedSenders` to fix `mempool_nu_activation.py`

This commit is contained in:
Kris Nuttycombe 2023-04-09 20:58:01 -06:00
parent 6e42aaeed6
commit 6f5360fbd8
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class MempoolUpgradeActivationTest(BitcoinTestFramework):
node1_taddr = get_coinbase_address(self.nodes[1])
node0_zaddr = self.nodes[0].z_getnewaddress('sapling')
recipients = [{'address': node0_zaddr, 'amount': Decimal('10')}]
myopid = self.nodes[1].z_sendmany(node1_taddr, recipients, 1, 0)
myopid = self.nodes[1].z_sendmany(node1_taddr, recipients, 1, 0, 'AllowRevealedSenders')
print(wait_and_assert_operationid_status(self.nodes[1], myopid))
self.sync_all()
self.nodes[0].generate(1)