diff options
author | fanquake <fanquake@gmail.com> | 2023-11-08 09:56:41 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-11-08 09:56:49 +0000 |
commit | 059f131314bf3d7804db65f0c7396cae98038e1c (patch) | |
tree | e526e0f23e5c0d11cc638d4702583122dde19047 | |
parent | 1162d046ecf23dd7047811a2769ff62262d73369 (diff) | |
parent | 6559e4d27ac9e8344d1211239cffab427b94bc23 (diff) |
Merge bitcoin/bitcoin#28820: tests: Increase wallet_miniscript.py rpc timeout to 90 seconds
6559e4d27ac9e8344d1211239cffab427b94bc23 tests: Increase wallet_miniscript.py rpc timeout to 90 seconds (Andrew Chow)
Pull request description:
The signing test for the large miniscript can sometimes take longer than the 30 second timeout, depending on the load on my system. Increasing it to 90 seconds seems to be good enough.
ACKs for top commit:
kevkevinpal:
but increasing seems fine ACK [6559e4d](https://github.com/bitcoin/bitcoin/pull/28820/commits/6559e4d27ac9e8344d1211239cffab427b94bc23)
maflcko:
lgtm ACK 6559e4d27ac9e8344d1211239cffab427b94bc23
Tree-SHA512: 1b7bf94c77f85a0deddb1384aacbeb934205d0a630fecc8e75a4a98d1946d77d9bca36692fb6c1ab8e9276392f617281aafc4c685c248a8d3b0c77f896cda624
-rwxr-xr-x | test/functional/wallet_miniscript.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/wallet_miniscript.py b/test/functional/wallet_miniscript.py index e6c8ad545c..67e1283902 100755 --- a/test/functional/wallet_miniscript.py +++ b/test/functional/wallet_miniscript.py @@ -208,6 +208,7 @@ class WalletMiniscriptTest(BitcoinTestFramework): def set_test_params(self): self.num_nodes = 1 + self.rpc_timeout = 180 def skip_test_if_missing_module(self): self.skip_if_no_wallet() |