diff options
| author | Gregory Maxwell <[email protected]> | 2012-05-27 19:26:47 -0700 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2012-05-27 19:26:47 -0700 |
| commit | 20cb17e1f9d5b18fd511614b806b05343c9134b4 (patch) | |
| tree | 3d8d032c89c60b8e6a2863c38d30bcfa803d72ec /src/util.cpp | |
| parent | Merge pull request #1357 from sipa/keyid (diff) | |
| parent | Add a testnet checkpoint at block 546 (diff) | |
| download | discoin-20cb17e1f9d5b18fd511614b806b05343c9134b4.tar.xz discoin-20cb17e1f9d5b18fd511614b806b05343c9134b4.zip | |
Merge pull request #1392 from gavinandresen/testnet_reset
Testnet reset
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index 3ab30baff..b07c9c1b7 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -834,7 +834,7 @@ const boost::filesystem::path &GetDataDir(bool fNetSpecific) path = GetDefaultDataDir(); } if (fNetSpecific && GetBoolArg("-testnet", false)) - path /= "testnet"; + path /= "testnet3"; fs::create_directory(path); |