Skip to content

Commit

Permalink
Merge #522: Fix occasional mempool_packages failure
Browse files Browse the repository at this point in the history
a88eae1 Fix occasional mempool_packages failure (Steven Roose)

Pull request description:

Tree-SHA512: 89c3880a184294b5708304c9add8936b65572af8f03033505d1961da58f705776a8f42a29e8815c0eab3ca84f4dac36bc1c22ab5697cf0675ce50ba4d23b00ff
  • Loading branch information
instagibbs committed Mar 21, 2019
2 parents bfd2055 + a88eae1 commit 899690b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/mempool_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def chain_transaction(self, node, parent_txid, vout, value, fee, num_outputs):
outputs = {}
for i in range(num_outputs):
outputs[node.getnewaddress()] = send_value
outputs["fee"] = fee
outputs["fee"] = value - (num_outputs * send_value)
rawtx = node.createrawtransaction(inputs, outputs)
signedtx = node.signrawtransactionwithwallet(rawtx)
txid = node.sendrawtransaction(signedtx['hex'])
Expand Down

0 comments on commit 899690b

Please sign in to comment.