Remove all other print() methods

All unused.
This commit is contained in:
Wladimir J. van der Laan 2014-08-20 20:54:27 +02:00
parent 9b6d4c5cdc
commit 3802224110
10 changed files with 0 additions and 51 deletions

View File

@ -80,11 +80,6 @@ std::string CUnsignedAlert::ToString() const
strStatusBar); strStatusBar);
} }
void CUnsignedAlert::print() const
{
LogPrintf("%s", ToString());
}
void CAlert::SetNull() void CAlert::SetNull()
{ {
CUnsignedAlert::SetNull(); CUnsignedAlert::SetNull();

View File

@ -68,7 +68,6 @@ public:
void SetNull(); void SetNull();
std::string ToString() const; std::string ToString() const;
void print() const;
}; };
/** An alert is a combination of a serialized CUnsignedAlert and a signature. */ /** An alert is a combination of a serialized CUnsignedAlert and a signature. */

View File

@ -3968,7 +3968,6 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv,
vRecv >> block; vRecv >> block;
LogPrint("net", "received block %s peer=%d\n", block.GetHash().ToString(), pfrom->id); LogPrint("net", "received block %s peer=%d\n", block.GetHash().ToString(), pfrom->id);
// block.print();
CInv inv(MSG_BLOCK, block.GetHash()); CInv inv(MSG_BLOCK, block.GetHash());
pfrom->AddInventoryKnown(inv); pfrom->AddInventoryKnown(inv);

View File

@ -839,11 +839,6 @@ public:
GetBlockHash().ToString()); GetBlockHash().ToString());
} }
void print() const
{
LogPrintf("%s\n", ToString());
}
// Check whether this block index entry is valid up to the passed validity level. // Check whether this block index entry is valid up to the passed validity level.
bool IsValid(enum BlockStatus nUpTo = BLOCK_VALID_TRANSACTIONS) const bool IsValid(enum BlockStatus nUpTo = BLOCK_VALID_TRANSACTIONS) const
{ {
@ -935,11 +930,6 @@ public:
hashPrev.ToString()); hashPrev.ToString());
return str; return str;
} }
void print() const
{
LogPrintf("%s\n", ToString());
}
}; };
/** Capture information about block/transaction validation */ /** Capture information about block/transaction validation */

View File

@ -42,14 +42,6 @@ public:
COrphan(const CTransaction* ptxIn) : ptx(ptxIn), feeRate(0), dPriority(0) COrphan(const CTransaction* ptxIn) : ptx(ptxIn), feeRate(0), dPriority(0)
{ {
} }
void print() const
{
LogPrintf("COrphan(hash=%s, dPriority=%.1f, fee=%s)\n",
ptx->GetHash().ToString(), dPriority, feeRate.ToString());
BOOST_FOREACH(uint256 hash, setDependsOn)
LogPrintf(" setDependsOn %s\n", hash.ToString());
}
}; };
uint64_t nLastBlockTx = 0; uint64_t nLastBlockTx = 0;

View File

@ -874,11 +874,6 @@ uint64_t CNetAddr::GetHash() const
return nRet; return nRet;
} }
void CNetAddr::print() const
{
LogPrintf("CNetAddr(%s)\n", ToString());
}
// private extensions to enum Network, only returned by GetExtNetwork, // private extensions to enum Network, only returned by GetExtNetwork,
// and only used in GetReachabilityFrom // and only used in GetReachabilityFrom
static const int NET_UNKNOWN = NET_MAX + 0; static const int NET_UNKNOWN = NET_MAX + 0;
@ -1107,11 +1102,6 @@ std::string CService::ToString() const
return ToStringIPPort(); return ToStringIPPort();
} }
void CService::print() const
{
LogPrintf("CService(%s)\n", ToString());
}
void CService::SetPort(unsigned short portIn) void CService::SetPort(unsigned short portIn)
{ {
port = portIn; port = portIn;

View File

@ -80,7 +80,6 @@ class CNetAddr
bool GetInAddr(struct in_addr* pipv4Addr) const; bool GetInAddr(struct in_addr* pipv4Addr) const;
std::vector<unsigned char> GetGroup() const; std::vector<unsigned char> GetGroup() const;
int GetReachabilityFrom(const CNetAddr *paddrPartner = NULL) const; int GetReachabilityFrom(const CNetAddr *paddrPartner = NULL) const;
void print() const;
CNetAddr(const struct in6_addr& pipv6Addr); CNetAddr(const struct in6_addr& pipv6Addr);
bool GetIn6Addr(struct in6_addr* pipv6Addr) const; bool GetIn6Addr(struct in6_addr* pipv6Addr) const;
@ -145,7 +144,6 @@ class CService : public CNetAddr
std::string ToString() const; std::string ToString() const;
std::string ToStringPort() const; std::string ToStringPort() const;
std::string ToStringIPPort() const; std::string ToStringIPPort() const;
void print() const;
CService(const struct in6_addr& ipv6Addr, unsigned short port); CService(const struct in6_addr& ipv6Addr, unsigned short port);
CService(const struct sockaddr_in6& addr); CService(const struct sockaddr_in6& addr);

View File

@ -144,9 +144,3 @@ std::string CInv::ToString() const
{ {
return strprintf("%s %s", GetCommand(), hash.ToString()); return strprintf("%s %s", GetCommand(), hash.ToString());
} }
void CInv::print() const
{
LogPrintf("CInv(%s)\n", ToString());
}

View File

@ -98,8 +98,6 @@ class CAddress : public CService
READWRITE(*pip); READWRITE(*pip);
) )
void print() const;
// TODO: make private (improves encapsulation) // TODO: make private (improves encapsulation)
public: public:
uint64_t nServices; uint64_t nServices;
@ -130,7 +128,6 @@ class CInv
bool IsKnownType() const; bool IsKnownType() const;
const char* GetCommand() const; const char* GetCommand() const;
std::string ToString() const; std::string ToString() const;
void print() const;
// TODO: make private (improves encapsulation) // TODO: make private (improves encapsulation)
public: public:

View File

@ -824,11 +824,6 @@ public:
{ {
return strprintf("COutput(%s, %d, %d) [%s]", tx->GetHash().ToString(), i, nDepth, FormatMoney(tx->vout[i].nValue).c_str()); return strprintf("COutput(%s, %d, %d) [%s]", tx->GetHash().ToString(), i, nDepth, FormatMoney(tx->vout[i].nValue).c_str());
} }
void print() const
{
LogPrintf("%s\n", ToString());
}
}; };