Update RPC tests to account for decreased block interval

This commit is contained in:
Jack Grigg
2016-06-07 21:01:33 +12:00
parent a59c352cfd
commit 196cf25d5b
11 changed files with 57 additions and 56 deletions

View File

@@ -46,7 +46,7 @@ class MempoolSpendCoinbaseTest(BitcoinTestFramework):
# is too immature to spend.
b = [ self.nodes[0].getblockhash(n) for n in range(101, 103) ]
coinbase_txids = [ self.nodes[0].getblock(h)['tx'][0] for h in b ]
spends_raw = [ self.create_tx(txid, node0_address, 40) for txid in coinbase_txids ]
spends_raw = [ self.create_tx(txid, node0_address, 10) for txid in coinbase_txids ]
spend_101_id = self.nodes[0].sendrawtransaction(spends_raw[0])