diff options
| author | Philip Kaufmann <[email protected]> | 2013-10-15 12:13:54 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2013-10-15 12:13:54 +0200 |
| commit | 96b9603c01dd4b6d337f431b508a4364c4fbfe01 (patch) | |
| tree | 279005f607a6c68641985adfd8f905c69b574b2d /src | |
| parent | Avoid core dump if rpc port is in use. (diff) | |
| download | discoin-96b9603c01dd4b6d337f431b508a4364c4fbfe01.tar.xz discoin-96b9603c01dd4b6d337f431b508a4364c4fbfe01.zip | |
misc spelling / space / style fixes
Diffstat (limited to 'src')
| -rw-r--r-- | src/chainparams.h | 2 | ||||
| -rw-r--r-- | src/net.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/chainparams.h b/src/chainparams.h index ce3c14306..3f99b7eb0 100644 --- a/src/chainparams.h +++ b/src/chainparams.h @@ -68,7 +68,7 @@ public: virtual const vector<CAddress>& FixedSeeds() const = 0; int RPCPort() const { return nRPCPort; } protected: - CChainParams() {}; + CChainParams() {} uint256 hashGenesisBlock; MessageStartChars pchMessageStart; @@ -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; } |