Enable DNS seeding by default.

This commit is contained in:
Jeff Garzik 2011-07-01 17:58:03 -04:00 committed by Jeff Garzik
parent 7fbeca05c9
commit 362efb24c1
1 changed files with 3 additions and 1 deletions

View File

@ -494,7 +494,9 @@ bool AppInit2(int argc, char* argv[])
}
}
if (mapArgs.count("-dnsseed"))
if (GetBoolArg("-nodnsseed"))
printf("DNS seeding disabled\n");
else
DNSAddressSeed();
if (mapArgs.count("-paytxfee"))