diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2019-07-18 22:12:51 +0200 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2019-07-18 22:31:24 +0200 |
commit | 024ecd7e01d436ad7de608e571a20c7284b3951b (patch) | |
tree | 3dd8a3a4da4f8abf7b1d50ea50ae482586b29b10 /test/functional | |
parent | e5abb59a9a66723dd1d9a01f65e467636eb24f2d (diff) |
QA: Fix race condition in wallet_encryption test
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/wallet_encryption.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_encryption.py b/test/functional/wallet_encryption.py index c514b7e0b4..fbcb4e75ba 100755 --- a/test/functional/wallet_encryption.py +++ b/test/functional/wallet_encryption.py @@ -49,7 +49,7 @@ class WalletEncryptionTest(BitcoinTestFramework): assert_equal(privkey, self.nodes[0].dumpprivkey(address)) # Check that the timeout is right - time.sleep(2) + time.sleep(3) assert_raises_rpc_error(-13, "Please enter the wallet passphrase with walletpassphrase first", self.nodes[0].dumpprivkey, address) # Test wrong passphrase |