Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[QA] Fix intermittent mempool sync failures in sapling_wallet_nullifiers #2638

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions test/functional/sapling_wallet_nullifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ def set_test_params(self):

def run_test (self):
self.nodes[0].generate(1) # activate Sapling
self.sync_all()

# add shield addr to node 0
myzaddr0 = self.nodes[0].getnewshieldaddress()
Expand All @@ -32,9 +33,7 @@ def run_test (self):
recipients = []
recipients.append({"address":myzaddr0, "amount":Decimal('10.0') - Decimal('1')}) # utxo amount less fee

txid = self.nodes[0].shieldsendmany(mytaddr, recipients)

self.sync_all()
self.nodes[0].shieldsendmany(mytaddr, recipients)
self.nodes[0].generate(1)
self.sync_all()

Expand Down