diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-01-28 00:31:00 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-01-28 00:31:00 +0000 |
commit | cb0f89646f065800d38d7cfc10ba1e855563296a (patch) | |
tree | 2cef9a44c911d1a80ef48bc74d50e7cc86b512b9 /irc.cpp | |
parent | 9a36562347122482fd1e6e77c74df66ad8cf2c3f (diff) |
simplify AddAddress,
readcompactsize limit,
fixed a 64-bit compile error in serialize.h,
change status "# blocks" to "# confirmations" and widen the column.
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@53 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'irc.cpp')
-rw-r--r-- | irc.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -265,8 +265,7 @@ void ThreadIRCSeed(void* parg) if (DecodeAddress(pszName, addr))
{
addr.nTime = GetAdjustedTime() - 51 * 60;
- CAddrDB addrdb;
- if (AddAddress(addrdb, addr))
+ if (AddAddress(addr))
printf("IRC got new address\n");
nGotIRCAddresses++;
}
|