From 43a94f05801ccdf0ce362cb276ab61c8a09d87c0 Mon Sep 17 00:00:00 2001 From: Konstantin Akimov Date: Sat, 6 Apr 2024 23:50:45 +0700 Subject: [PATCH] fix: adjust functional tests due to dash's support of thread name after v0.12 --- test/functional/test_framework/test_node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py index d092e33304..355a2d2ae8 100755 --- a/test/functional/test_framework/test_node.py +++ b/test/functional/test_framework/test_node.py @@ -116,7 +116,7 @@ class TestNode(): "--gen-suppressions=all", "--exit-on-first-error=yes", "--error-exitcode=1", "--quiet"] + self.args - if self.version_is_at_least(190000): + if self.version_is_at_least(120100): self.args.append("-logthreadnames") self.cli = TestNodeCLI(bitcoin_cli, self.datadir)