diff options
author | Alex Morcos <morcos@chaincode.com> | 2016-12-09 11:42:23 -0500 |
---|---|---|
committer | Alex Morcos <morcos@chaincode.com> | 2016-12-09 11:42:23 -0500 |
commit | 9359f8ad3b7053062f22bb68605c57a3c4b62113 (patch) | |
tree | f24a54d86f00dff0351935fb497e0adceb9c2cea /qa/rpc-tests/fundrawtransaction.py | |
parent | 72bf1b3d0962304850a3ef5fe375db4bff1d0a39 (diff) |
Wallet needs to stay unlocked for whole test
Diffstat (limited to 'qa/rpc-tests/fundrawtransaction.py')
-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 8c45578fcf..172b3ae720 100755 --- a/qa/rpc-tests/fundrawtransaction.py +++ b/qa/rpc-tests/fundrawtransaction.py @@ -498,7 +498,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) |