diff options
| author | MarcoFalke <[email protected]> | 2016-12-10 18:47:33 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-12-10 18:47:36 +0100 |
| commit | 76fcd9d5034143a5b041766552670d19f926097d (patch) | |
| tree | fb64ef36e5ac557f73c1a8460467dd615c61998e | |
| parent | Merge #9240: Remove txConflicted (diff) | |
| parent | Wallet needs to stay unlocked for whole test (diff) | |
| download | discoin-76fcd9d5034143a5b041766552670d19f926097d.tar.xz discoin-76fcd9d5034143a5b041766552670d19f926097d.zip | |
Merge #9309: [qa] Wallet needs to stay unlocked for whole test
9359f8a Wallet needs to stay unlocked for whole test (Alex Morcos)
| -rwxr-xr-x | qa/rpc-tests/fundrawtransaction.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/fundrawtransaction.py b/qa/rpc-tests/fundrawtransaction.py index 0dcca4cb5..82e148c55 100755 --- a/qa/rpc-tests/fundrawtransaction.py +++ b/qa/rpc-tests/fundrawtransaction.py @@ -515,7 +515,7 @@ class RawTransactionsTest(BitcoinTestFramework): fundedTx = self.nodes[1].fundrawtransaction(rawTx) #now we need to unlock - self.nodes[1].walletpassphrase("test", 100) + self.nodes[1].walletpassphrase("test", 600) signedTx = self.nodes[1].signrawtransaction(fundedTx['hex']) txId = self.nodes[1].sendrawtransaction(signedTx['hex']) self.nodes[1].generate(1) |