From e218d9cba7217838b61bacc037a20b1e20eb6a6e Mon Sep 17 00:00:00 2001 From: Neil Date: Sat, 26 Oct 2024 04:49:55 +0400 Subject: [PATCH] Fix feature_filelock.py --- test/functional/feature_filelock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/feature_filelock.py b/test/functional/feature_filelock.py index 567207915e..ef82a5946f 100755 --- a/test/functional/feature_filelock.py +++ b/test/functional/feature_filelock.py @@ -33,7 +33,7 @@ def run_test(self): self.log.info("Check that cookie and PID file are not deleted when attempting to start a second bitcoind using the same datadir") cookie_file = datadir / ".cookie" assert cookie_file.exists() # should not be deleted during the second bitcoind instance shutdown - pid_file = datadir / "bitcoind.pid" + pid_file = datadir / "qtumd.pid" assert pid_file.exists() if self.is_wallet_compiled():