aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_bip68_sequence.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-09-13 09:48:59 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-09-13 09:41:58 +0200
commitfad4f4464583e3c26c95c2c301f39df6b3dcf6c7 (patch)
treef1bcb7a906d2ddfb6a0c4dbb859c269f11ba7c38 /test/functional/feature_bip68_sequence.py
parent053a5fc7d912d597cd6dc7376b479420d1eae1c0 (diff)
downloadbitcoin-fad4f4464583e3c26c95c2c301f39df6b3dcf6c7.tar.xz
test: Set peertimeout in write_config
This avoids having to remember to set it whenever mocktime is used with peer connections. Also, it might help avoiding disconnects when attaching a debugger to a running test.
Diffstat (limited to 'test/functional/feature_bip68_sequence.py')
-rwxr-xr-xtest/functional/feature_bip68_sequence.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/functional/feature_bip68_sequence.py b/test/functional/feature_bip68_sequence.py
index 85522164d2..09cda8444a 100755
--- a/test/functional/feature_bip68_sequence.py
+++ b/test/functional/feature_bip68_sequence.py
@@ -41,10 +41,7 @@ class BIP68Test(BitcoinTestFramework):
def set_test_params(self):
self.num_nodes = 2
self.extra_args = [
- [
- "-acceptnonstdtxn=1",
- "-peertimeout=9999", # bump because mocktime might cause a disconnect otherwise
- ],
+ ["-acceptnonstdtxn=1"],
["-acceptnonstdtxn=0"],
]