diff options
| author | Gavin Andresen <[email protected]> | 2012-01-03 11:17:04 -0500 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-01-03 12:17:54 -0500 |
| commit | cc6bd19660461091903568803014b39d571fd458 (patch) | |
| tree | 61d2b3b13ff99c846f6eea067aae73975c49b130 /src | |
| parent | Fix issue #659, and cleanup wallet/command-line argument handling a bit (diff) | |
| download | discoin-cc6bd19660461091903568803014b39d571fd458.tar.xz discoin-cc6bd19660461091903568803014b39d571fd458.zip | |
I broke -testnet with my TOR option-parsing fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 292424fb1..d1332e061 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -237,6 +237,7 @@ bool AppInit2(int argc, char* argv[]) return false; } + fTestNet = GetBoolArg("-testnet"); fDebug = GetBoolArg("-debug"); #ifndef __WXMSW__ @@ -499,7 +500,6 @@ bool AppInit2(int argc, char* argv[]) } } - fTestNet = GetBoolArg("-testnet"); bool fTor = (fUseProxy && addrProxy.port == htons(9050)); if (fTor) { |