diff options
| author | mruddy <[email protected]> | 2016-09-04 11:42:07 -0400 |
|---|---|---|
| committer | mruddy <[email protected]> | 2016-09-04 11:42:07 -0400 |
| commit | ff2ed7a5bc8f56d2c0cd8d4fa6cf06ecfe17f1b2 (patch) | |
| tree | 2bf3f206d07f12d952792ca93514266ad4bad1dd /src/bitcoind.cpp | |
| parent | Merge #8466: [Trivial] Do not shadow variables in networking code (diff) | |
| download | discoin-ff2ed7a5bc8f56d2c0cd8d4fa6cf06ecfe17f1b2.tar.xz discoin-ff2ed7a5bc8f56d2c0cd8d4fa6cf06ecfe17f1b2.zip | |
trivial: remove unnecessary variable fDaemon
Diffstat (limited to 'src/bitcoind.cpp')
| -rw-r--r-- | src/bitcoind.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index 28bc374ac..322298d1b 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -40,8 +40,6 @@ * Use the buttons <code>Namespaces</code>, <code>Classes</code> or <code>Files</code> at the top of the page to start navigating the code. */ -static bool fDaemon; - void WaitForShutdown(boost::thread_group* threadGroup) { bool fShutdown = ShutdownRequested(); @@ -130,8 +128,7 @@ bool AppInit(int argc, char* argv[]) exit(1); } #ifndef WIN32 - fDaemon = GetBoolArg("-daemon", false); - if (fDaemon) + if (GetBoolArg("-daemon", false)) { fprintf(stdout, "Bitcoin server starting\n"); |