Separate testnet default data dir

This commit is contained in:
Zachary Michaels 2014-09-08 17:30:50 -04:00 committed by Riccardo Spagni
parent 3ef7f33300
commit 018e251cc0
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD
5 changed files with 44 additions and 31 deletions

View file

@ -47,4 +47,5 @@ namespace command_line
const arg_descriptor<bool> arg_help = {"help", "Produce help message"};
const arg_descriptor<bool> arg_version = {"version", "Output version information"};
const arg_descriptor<std::string> arg_data_dir = {"data-dir", "Specify data directory"};
const arg_descriptor<std::string> arg_testnet_data_dir = {"testnet-data-dir", "Specify testnet data directory"};
}

View file

@ -203,4 +203,5 @@ namespace command_line
extern const arg_descriptor<bool> arg_help;
extern const arg_descriptor<bool> arg_version;
extern const arg_descriptor<std::string> arg_data_dir;
extern const arg_descriptor<std::string> arg_testnet_data_dir;
}