mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
version 0.3 rc2
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@95 1a98c847-1fd6-4fd8-948a-caf3550aa51b
This commit is contained in:
parent
8700fae12a
commit
06c4716396
6
irc.cpp
6
irc.cpp
@ -166,10 +166,12 @@ void ThreadIRCSeed(void* parg)
|
||||
|
||||
while (!fShutdown)
|
||||
{
|
||||
CAddress addrConnect("216.155.130.130:6667");
|
||||
//CAddress addrConnect("216.155.130.130:6667"); // chat.freenode.net
|
||||
CAddress addrConnect("92.243.23.21:6667"); // irc.lfnet.org
|
||||
if (!fTOR)
|
||||
{
|
||||
struct hostent* phostent = gethostbyname("chat.freenode.net");
|
||||
//struct hostent* phostent = gethostbyname("chat.freenode.net");
|
||||
struct hostent* phostent = gethostbyname("irc.lfnet.org");
|
||||
if (phostent && phostent->h_addr_list && phostent->h_addr_list[0])
|
||||
addrConnect = CAddress(*(u_long*)phostent->h_addr_list[0], htons(6667));
|
||||
}
|
||||
|
2
main.cpp
2
main.cpp
@ -2707,7 +2707,7 @@ void BitcoinMiner()
|
||||
}
|
||||
|
||||
// Update nTime every few seconds
|
||||
const uint64 nMask = 0xffff;
|
||||
const unsigned int nMask = 0xffff;
|
||||
if ((++tmp.block.nNonce & nMask) == 0)
|
||||
{
|
||||
// Meter hashes/sec
|
||||
|
@ -20,7 +20,7 @@ class CDataStream;
|
||||
class CAutoFile;
|
||||
|
||||
static const int VERSION = 300;
|
||||
static const char* pszSubVer = " rc1";
|
||||
static const char* pszSubVer = " rc2";
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user