diff options
author | mj-xmr <mjxmr@protonmail.com> | 2021-02-11 13:42:43 +0100 |
---|---|---|
committer | mj-xmr <mjxmr@protonmail.com> | 2021-02-11 13:42:43 +0100 |
commit | 1aecdcf536ff18c3aa7a623e1ed8314c7d79ea38 (patch) | |
tree | 94ceb99dcf0345ac1495b26131a87a5bbb703d8c | |
parent | Merge pull request #7260 (diff) | |
download | monero-1aecdcf536ff18c3aa7a623e1ed8314c7d79ea38.tar.xz |
Increase timeout for the mining test 4 times (to 240s)
-rwxr-xr-x | tests/functional_tests/mining.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional_tests/mining.py b/tests/functional_tests/mining.py index 1eb6b0ba7..50bfd32a2 100755 --- a/tests/functional_tests/mining.py +++ b/tests/functional_tests/mining.py @@ -97,7 +97,7 @@ class MiningTest(): # wait till we mined a few of them target_height = prev_height + 5 height = prev_height - timeout = 60 # randomx is slow to init + timeout = 240 # randomx is slow to init while height < target_height: seen_height = height for _ in range(timeout): |