Skip to content

Commit fa8a823

Browse files
author
MarcoFalke
committed
test: Bump rpc_timeout in feature_dbcrash
1 parent 74ea1f3 commit fa8a823

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

test/functional/feature_dbcrash.py

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,27 @@
3030
import random
3131
import time
3232

33-
from test_framework.messages import COIN, COutPoint, CTransaction, CTxIn, CTxOut, ToHex
33+
from test_framework.messages import (
34+
COIN,
35+
COutPoint,
36+
CTransaction,
37+
CTxIn,
38+
CTxOut,
39+
ToHex,
40+
)
3441
from test_framework.test_framework import BitcoinTestFramework
35-
from test_framework.util import assert_equal, create_confirmed_utxos, hex_str_to_bytes
42+
from test_framework.util import (
43+
assert_equal,
44+
create_confirmed_utxos,
45+
hex_str_to_bytes,
46+
)
3647

3748

3849
class ChainstateWriteCrashTest(BitcoinTestFramework):
3950
def set_test_params(self):
4051
self.num_nodes = 4
4152
self.setup_clean_chain = False
42-
# Need a bit of extra time for the nodes to start up for this test
43-
self.rpc_timeout = 90
53+
self.rpc_timeout = 180
4454

4555
# Set -maxmempool=0 to turn off mempool memory sharing with dbcache
4656
# Set -rpcservertimeout=900 to reduce socket disconnects in this

0 commit comments

Comments
 (0)