changeset 82:1f4277a7fe3e draft

version 0.3 rc2 git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@95 1a98c847-1fd6-4fd8-948a-caf3550aa51b
author s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>
date Sat, 26 Jun 2010 15:47:45 +0000
parents a21a86cc52fe
children 3fe7b7d72e44
files irc.cpp main.cpp serialize.h
diffstat 3 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/irc.cpp
+++ b/irc.cpp
@@ -166,10 +166,12 @@
 
     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));
         }
--- a/main.cpp
+++ b/main.cpp
@@ -2707,7 +2707,7 @@
             }
 
             // Update nTime every few seconds
-            const uint64 nMask = 0xffff;
+            const unsigned int nMask = 0xffff;
             if ((++tmp.block.nNonce & nMask) == 0)
             {
                 // Meter hashes/sec
--- a/serialize.h
+++ b/serialize.h
@@ -20,7 +20,7 @@
 class CAutoFile;
 
 static const int VERSION = 300;
-static const char* pszSubVer = " rc1";
+static const char* pszSubVer = " rc2";