diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-08-26 13:23:57 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-08-26 13:24:12 +0200 |
| commit | 12892dbb9fb6d6f46505d7b9caf8ae6905601c7f (patch) | |
| tree | ab45b4993516c16e963964d2e6a91e24d10f5ce6 /src/init.cpp | |
| parent | Merge #8581: [wallet] rpc: Drop misleading option (diff) | |
| parent | Remove unused variables (diff) | |
| download | discoin-12892dbb9fb6d6f46505d7b9caf8ae6905601c7f.tar.xz discoin-12892dbb9fb6d6f46505d7b9caf8ae6905601c7f.zip | |
Merge #8590: Remove unused variables
fa6dc9f Remove unused variables (MarcoFalke)
Diffstat (limited to 'src/init.cpp')
| -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 13c68e512..65ae4dbd9 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1183,8 +1183,8 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler) fNameLookup = GetBoolArg("-dns", DEFAULT_NAME_LOOKUP); fRelayTxes = !GetBoolArg("-blocksonly", DEFAULT_BLOCKSONLY); - bool fBound = false; if (fListen) { + bool fBound = false; if (mapArgs.count("-bind") || mapArgs.count("-whitebind")) { BOOST_FOREACH(const std::string& strBind, mapMultiArgs["-bind"]) { CService addrBind; |