From 7be7ec01c16d86ef5356f0b5ec70bbba57c358c0 Mon Sep 17 00:00:00 2001 From: CryptAxe Date: Thu, 28 Mar 2024 10:46:10 -0700 Subject: [PATCH] Update util.cpp - change linux default data dir to ~/drivechain --- src/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.cpp b/src/util.cpp index 062c0220f..39b088560 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -570,7 +570,7 @@ fs::path GetDefaultDataDir() return pathRet / "Library/Application Support/Drivechain"; #else // Unix - return pathRet / ".drivechain"; + return pathRet / "drivechain"; #endif #endif }