Skip to content

Commit 6e1adbb

Browse files
committed
Merge bitcoin/bitcoin#33612: test: change log rate limit version gate
7b54434 test: change log rate limit version gate from 299900 to 290100 (Eugene Siegel) Pull request description: Change the version gate from 299900 to 290100 for bypassing the log rate limit in case an explicit version is set in the functional test framework. See discussion here: bitcoin/bitcoin#33225 (comment) ACKs for top commit: maflcko: lgtm ACK 7b54434 janb84: ACK 7b54434 stickies-v: ACK 7b54434 Tree-SHA512: c07c8741dfdeca87c49748b7082c2ecb829da391908316f35daef7292bc017814a89f04e16e738f3a105541bbc38e4feb5bca3fb6ab718a1dc1de7c70a9c8a58
2 parents fdcf67d + 7b54434 commit 6e1adbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/test_framework/test_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def __init__(self, i, datadir_path, *, chain, rpchost, timewait, timeout_factor,
161161
self.args.append("-logsourcelocations")
162162
if self.version_is_at_least(239000):
163163
self.args.append("-loglevel=trace")
164-
if self.version_is_at_least(299900):
164+
if self.version_is_at_least(290100):
165165
self.args.append("-nologratelimit")
166166

167167
# Default behavior from global -v2transport flag is added to args to persist it over restarts.

0 commit comments

Comments
 (0)