diff options
| author | MarcoFalke <[email protected]> | 2017-06-06 01:23:44 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2017-06-06 01:23:01 +0200 |
| commit | fa62dadabed9e7f3f2322961806a0fddb9d8f85a (patch) | |
| tree | d714f949ca57cfe96fb2d53939931b680bb47f78 | |
| parent | Merge #9740: Add friendly output to dumpwallet (diff) | |
| download | discoin-fa62dadabed9e7f3f2322961806a0fddb9d8f85a.tar.xz discoin-fa62dadabed9e7f3f2322961806a0fddb9d8f85a.zip | |
[qa] fundrawtx: Fix shutdown race
| -rwxr-xr-x | test/functional/fundrawtransaction.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/fundrawtransaction.py b/test/functional/fundrawtransaction.py index c41afe2b9..0a3166b89 100755 --- a/test/functional/fundrawtransaction.py +++ b/test/functional/fundrawtransaction.py @@ -452,7 +452,7 @@ class RawTransactionsTest(BitcoinTestFramework): self.stop_node(2) self.stop_node(3) self.nodes[1].encryptwallet("test") - self.nodes.pop(1) + bitcoind_processes[1].wait(timeout=BITCOIND_PROC_WAIT_TIMEOUT) self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir) # This test is not meant to test fee estimation and we'd like |