Skip to content

Commit

Permalink
Merge bitcoin#9977: QA: getblocktemplate_longpoll.py should always us…
Browse files Browse the repository at this point in the history
…e >0 fee tx

655df06 QA: getblocktemplate_longpoll.py should always use >0 fee tx (Suhas Daftuar)

Tree-SHA512: 016647ba1408f8aaa3fc954835542354d54bf2391c4252c1c505101edbbe1cf8dd6a07060930109d0341f86360b9391dfef439999a93a5bae68fc901dace0b71
  • Loading branch information
MarcoFalke authored and PastaPastaPasta committed Feb 26, 2019
1 parent e8df27f commit b09e3e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion qa/rpc-tests/getblocktemplate_longpoll.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ def run_test(self):
thr = LongpollThread(self.nodes[0])
thr.start()
# generate a random transaction and submit it
(txid, txhex, fee) = random_transaction(self.nodes, Decimal("1.1"), Decimal("0.0"), Decimal("0.001"), 20)
min_relay_fee = self.nodes[0].getnetworkinfo()["relayfee"]
# min_relay_fee is fee per 1000 bytes, which should be more than enough.
(txid, txhex, fee) = random_transaction(self.nodes, Decimal("1.1"), min_relay_fee, Decimal("0.001"), 20)
# after one minute, every 10 seconds the mempool is probed, so in 80 seconds it should have returned
thr.join(60 + 20)
assert(not thr.is_alive())
Expand Down

0 comments on commit b09e3e0

Please sign in to comment.