Merge pull request #1087 from sipa/fix_1086
Fix #1086: add /testnet to passed datadir
This commit is contained in:
commit
c3c203ccd9
1 changed files with 2 additions and 2 deletions
|
@ -836,9 +836,9 @@ const boost::filesystem::path &GetDataDir(bool fNetSpecific)
|
|||
path = mapArgs["-datadir"];
|
||||
} else {
|
||||
path = GetDefaultDataDir();
|
||||
if (fNetSpecific && GetBoolArg("-testnet", false))
|
||||
path /= "testnet";
|
||||
}
|
||||
if (fNetSpecific && GetBoolArg("-testnet", false))
|
||||
path /= "testnet";
|
||||
|
||||
fs::create_directory(path);
|
||||
|
||||
|
|
Loading…
Reference in a new issue