diff options
author | MarcoFalke <falke.marco@gmail.com> | 2017-06-06 12:28:45 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2017-06-06 12:28:59 +0200 |
commit | 30853e16d332816752dafcfca92147c7ffef5b54 (patch) | |
tree | 9dee6fb038657f677bd477cb153ac70ee94e0904 /test/functional | |
parent | 67700b39241dd75a9848dfef28c65e15e30289e9 (diff) | |
parent | fa62dadabed9e7f3f2322961806a0fddb9d8f85a (diff) |
Merge #10535: [qa] fundrawtx: Fix shutdown race
fa62dad [qa] fundrawtx: Fix shutdown race (MarcoFalke)
Tree-SHA512: bf1a3dd053a0f950639bb78fc6ef6255cc5e0b3d27efb97d956f4bd3342839c28a91d8d0793ef7473ab0c8beda30034767031060ae1895408513aa1d9f7c9ff4
Diffstat (limited to 'test/functional')
-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 c41afe2b93..0a3166b89b 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 |