aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-01-08 13:12:16 +0100
committerMarcoFalke <falke.marco@gmail.com>2016-01-09 16:54:04 +0100
commitfa1cb1ae15e74e6149ff7fd8aae6cba216914e4c (patch)
treec3fe8ad903451addb2072a05211aa604bfd983ae /qa/rpc-tests
parent605c17844ea32b6d237db6d83871164dc7d59dab (diff)
downloadbitcoin-fa1cb1ae15e74e6149ff7fd8aae6cba216914e4c.tar.xz
[qa] Test walletpassphrase timeout
Diffstat (limited to 'qa/rpc-tests')
-rwxr-xr-xqa/rpc-tests/keypool.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/qa/rpc-tests/keypool.py b/qa/rpc-tests/keypool.py
index c300bbc57e..95d0d6832a 100755
--- a/qa/rpc-tests/keypool.py
+++ b/qa/rpc-tests/keypool.py
@@ -70,9 +70,11 @@ class KeyPoolTest(BitcoinTestFramework):
assert(e.error['code']==-12)
# refill keypool with three new addresses
- nodes[0].walletpassphrase('test', 12000)
+ nodes[0].walletpassphrase('test', 1)
nodes[0].keypoolrefill(3)
- nodes[0].walletlock()
+ # test walletpassphrase timeout
+ time.sleep(1.1)
+ assert_equal(nodes[0].getwalletinfo()["unlocked_until"], 0)
# drain them by mining
nodes[0].generate(1)