changed seed dns from casinoco.in to casinocoin.org; updated version number to 1.2.1

This commit is contained in:
qwerty55
2014-06-16 21:18:47 -04:00
parent 6fe7061421
commit 7300f8150a
2 changed files with 6 additions and 6 deletions

View File

@@ -8,7 +8,7 @@
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it // These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 1 #define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 2 #define CLIENT_VERSION_MINOR 2
#define CLIENT_VERSION_REVISION 0 #define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_BUILD 0 #define CLIENT_VERSION_BUILD 0
// Set to true for release, false for prerelease or test build // Set to true for release, false for prerelease or test build

View File

@@ -1192,15 +1192,15 @@ void MapPort(bool)
// The first name is used as information source for addrman. // The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses. // The second name should resolve to a list of seed addresses.
static const char *strMainNetDNSSeed[][2] = { static const char *strMainNetDNSSeed[][2] = {
{"casinoco.in seed", "seed.casinoco.in"}, {"casinocoin.org seed", "seed.casinocoin.org"},
{"casinoco.in seed #1", "seed1.casinoco.in"}, {"casinocoin.org seed #1", "seed1.casinocoin.org"},
{"casinoco.in seed #2", "seed2.casinoco.in"}, {"casinocoin.org seed #2", "seed2.casinocoin.org"},
{"casinoco.in seed #3", "seed3.casinoco.in"}, {"casinocoin.org seed #3", "seed3.casinocoin.org"},
{NULL, NULL} {NULL, NULL}
}; };
static const char *strTestNetDNSSeed[][2] = { static const char *strTestNetDNSSeed[][2] = {
{"casinoco.in testnet seed #1", "testnet-seed1.casinoco.in"}, {"casinocoin.org testnet seed #1", "testnet-seed1.casinocoin.org"},
{NULL, NULL} {NULL, NULL}
}; };