Part of #1969. Update tests to avoid error 'absurdly high fee' from change in min fee calc.

This commit is contained in:
Simon
2017-02-28 11:44:51 -08:00
parent ebe750a882
commit 85c9ecb846
4 changed files with 14 additions and 14 deletions

View File

@@ -51,7 +51,7 @@ class MempoolCoinbaseTest(BitcoinTestFramework):
blocks = []
blocks.extend(self.nodes[0].generate(1))
spends2_raw = [ self.create_tx(txid, node0_address, 9.99) for txid in spends1_id ]
spends2_raw = [ self.create_tx(txid, node0_address, 9.999) for txid in spends1_id ]
spends2_id = [ self.nodes[0].sendrawtransaction(tx) for tx in spends2_raw ]
blocks.extend(self.nodes[0].generate(1))