Browse Source

Remove all other print() methods

All unused.
metaverse
Wladimir J. van der Laan 10 years ago
parent
commit
3802224110
  1. 5
      src/alert.cpp
  2. 1
      src/alert.h
  3. 1
      src/main.cpp
  4. 10
      src/main.h
  5. 8
      src/miner.cpp
  6. 10
      src/netbase.cpp
  7. 2
      src/netbase.h
  8. 6
      src/protocol.cpp
  9. 3
      src/protocol.h
  10. 5
      src/wallet.h

5
src/alert.cpp

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

1
src/alert.h

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

1
src/main.cpp

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

10
src/main.h

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

8
src/miner.cpp

@ -42,14 +42,6 @@ public:
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;

10
src/netbase.cpp

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

2
src/netbase.h

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

6
src/protocol.cpp

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

3
src/protocol.h

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

5
src/wallet.h

@ -824,11 +824,6 @@ public:
{
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());
}
};

Loading…
Cancel
Save