aboutsummaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorAlex Morcos <morcos@chaincode.com>2016-12-09 11:42:23 -0500
committerAlex Morcos <morcos@chaincode.com>2016-12-09 11:42:23 -0500
commit9359f8ad3b7053062f22bb68605c57a3c4b62113 (patch)
treef24a54d86f00dff0351935fb497e0adceb9c2cea /qa
parent72bf1b3d0962304850a3ef5fe375db4bff1d0a39 (diff)
downloadbitcoin-9359f8ad3b7053062f22bb68605c57a3c4b62113.tar.xz
Wallet needs to stay unlocked for whole test
Diffstat (limited to 'qa')
-rwxr-xr-xqa/rpc-tests/fundrawtransaction.py2
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)