Skip to content

Commit

Permalink
Completely disable InstantSend while filling mempool in autoix-mempoo…
Browse files Browse the repository at this point in the history
…l.py

Otherwise we overload Travis and tests start to randomly fail.
  • Loading branch information
codablock committed Mar 7, 2019
1 parent fae33e0 commit 4d3365d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions qa/rpc-tests/autoix-mempool.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,12 @@ def test_auto(self, new_is = False):

# fill mempool with transactions
self.set_autoix_spork_state(False)
self.nodes[0].spork("SPORK_2_INSTANTSEND_ENABLED", 4070908800)
self.wait_for_sporks_same()
self.fill_mempool()
self.set_autoix_spork_state(True)
self.nodes[0].spork("SPORK_2_INSTANTSEND_ENABLED", 0)
self.wait_for_sporks_same()

# autoIX is not working now
assert(not self.send_simple_tx(sender, receiver))
Expand Down

0 comments on commit 4d3365d

Please sign in to comment.