diff options
| author | Jonas Schnelli <[email protected]> | 2015-07-10 20:11:44 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-07-10 21:13:33 +0200 |
| commit | 6ed38b0b8ff195d4a7117232efc08b29e56ebb60 (patch) | |
| tree | 16236f270980372f7789b8670b3b655c293069b8 /qa/rpc-tests/rawtransactions.py | |
| parent | Merge pull request #6414 (diff) | |
| download | discoin-6ed38b0b8ff195d4a7117232efc08b29e56ebb60.tar.xz discoin-6ed38b0b8ff195d4a7117232efc08b29e56ebb60.zip | |
[QA] fix possible reorg issue in rawtransaction.py/fundrawtransaction.py RPC test
- added missing mempool sync between block generations
Diffstat (limited to 'qa/rpc-tests/rawtransactions.py')
| -rwxr-xr-x | qa/rpc-tests/rawtransactions.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qa/rpc-tests/rawtransactions.py b/qa/rpc-tests/rawtransactions.py index 1378514c8..173faf736 100755 --- a/qa/rpc-tests/rawtransactions.py +++ b/qa/rpc-tests/rawtransactions.py @@ -40,6 +40,7 @@ class RawTransactionsTest(BitcoinTestFramework): #prepare some coins for multiple *rawtransaction commands self.nodes[2].generate(1) + self.sync_all() self.nodes[0].generate(101) self.sync_all() self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(),1.5); |