Skip to content

Commit 6470fe1

Browse files
author
simon
committed
Fix Mac build issue
Default data dir path used "Bitcoin" instead of "MultiChain".
1 parent c84ddc0 commit 6470fe1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/utils/utilwrapper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ boost::filesystem::path mc_GetDefaultDataDir()
298298
// Mac
299299
pathRet /= "Library/Application Support";
300300
TryCreateDirectory(pathRet);
301-
return pathRet / "Bitcoin";
301+
return pathRet / "MultiChain";
302302
#else
303303
// Unix
304304
return pathRet / ".multichain";
@@ -930,4 +930,4 @@ int mc_FindIPv4ServerAddress(uint32_t *all_ips,int max_ips)
930930
return c;
931931
}
932932

933-
933+

0 commit comments

Comments
 (0)