Merge pull request #1087 from sipa/fix_1086

Fix #1086: add /testnet to passed datadir
This commit is contained in:
Gavin Andresen 2012-04-12 18:22:15 -07:00
commit c3c203ccd9
1 changed files with 2 additions and 2 deletions

View File

@ -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);