mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-27 08:03:16 +02:00
Use ArgsManager::GetPathArg() for "-blocksdir" option
This commit is contained in:
@@ -416,7 +416,7 @@ const fs::path& ArgsManager::GetBlocksDirPath() const
|
|||||||
if (!path.empty()) return path;
|
if (!path.empty()) return path;
|
||||||
|
|
||||||
if (IsArgSet("-blocksdir")) {
|
if (IsArgSet("-blocksdir")) {
|
||||||
path = fs::absolute(fs::PathFromString(GetArg("-blocksdir", "")));
|
path = fs::absolute(GetPathArg("-blocksdir"));
|
||||||
if (!fs::is_directory(path)) {
|
if (!fs::is_directory(path)) {
|
||||||
path = "";
|
path = "";
|
||||||
return path;
|
return path;
|
||||||
|
Reference in New Issue
Block a user