diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2024-05-17 22:15:45 +0200 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2024-05-17 22:38:59 +0200 |
commit | 8950053636cb38ed85fe2d58b53e5d0acb35c390 (patch) | |
tree | 911a9f071c6c8cbdb75b422f63e9832fa4be5756 /test/functional/feature_rbf.py | |
parent | 058af75874ffa2b4064e3d6d30cc50f0ec754ba8 (diff) |
test: remove unneeded `-maxorphantx=1000` settings
It's unclear what the motivation for increasing the orphan pool is, and
it seems that this not needed at all. None of these tests involve orphan
transactions explicitly, and if they would occur occasionally, there is
no good reason to prefer a value of 1000 over the default of 100 (see
DEFAULT_MAX_ORPHAN_TRANSACTIONS).
Diffstat (limited to 'test/functional/feature_rbf.py')
-rwxr-xr-x | test/functional/feature_rbf.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/functional/feature_rbf.py b/test/functional/feature_rbf.py index c5eeaf66e0..739b9b9bb9 100755 --- a/test/functional/feature_rbf.py +++ b/test/functional/feature_rbf.py @@ -28,7 +28,6 @@ class ReplaceByFeeTest(BitcoinTestFramework): self.num_nodes = 2 self.extra_args = [ [ - "-maxorphantx=1000", "-limitancestorcount=50", "-limitancestorsize=101", "-limitdescendantcount=200", |