misc spelling / space / style fixes

This commit is contained in:
Philip Kaufmann
2013-10-15 12:13:54 +02:00
parent b2ba55c42b
commit 96b9603c01
3 changed files with 4 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ public:
virtual const vector<CAddress>& FixedSeeds() const = 0;
int RPCPort() const { return nRPCPort; }
protected:
CChainParams() {};
CChainParams() {}
uint256 hashGenesisBlock;
MessageStartChars pchMessageStart;

View File

@@ -313,7 +313,7 @@ public:
unsigned int GetTotalRecvSize()
{
unsigned int total = 0;
BOOST_FOREACH(const CNetMessage &msg, vRecvMsg)
BOOST_FOREACH(const CNetMessage &msg, vRecvMsg)
total += msg.vRecv.size() + 24;
return total;
}