remove unused IsArgSet check

Forgotten in 506b700dcb
This commit is contained in:
Marko Bencun 2017-09-11 16:13:52 +02:00
parent 605918272c
commit 35e5c2269c
1 changed files with 2 additions and 3 deletions

View File

@ -1687,9 +1687,8 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler)
connOptions.vWhitelistedRange.push_back(subnet);
}
if (gArgs.IsArgSet("-seednode")) {
connOptions.vSeedNodes = gArgs.GetArgs("-seednode");
}
connOptions.vSeedNodes = gArgs.GetArgs("-seednode");
// Initiate outbound connections unless connect=0
connOptions.m_use_addrman_outgoing = !gArgs.IsArgSet("-connect");
if (!connOptions.m_use_addrman_outgoing) {