X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fprotocol.h;h=fcc8c9e06f650a97c6305e2d06597e401aafddbf;hb=510a23a2c838245cd4681ed0b4fbce48e8ebf506;hp=519cdc277e92630ba85ed2336d844a946d5ed5ff;hpb=3b3a4cb430cf5a7e3665faeaec0ae882b0650336;p=novacoin.git diff --git a/src/protocol.h b/src/protocol.h index 519cdc2..fcc8c9e 100644 --- a/src/protocol.h +++ b/src/protocol.h @@ -17,9 +17,9 @@ #include "uint256.h" extern bool fTestNet; -static inline unsigned short GetDefaultPort(const bool testnet = fTestNet) +inline unsigned short GetDefaultPort() { - return testnet ? 17777 : 7777; + return static_cast(fTestNet ? 17777 : 7777); } @@ -78,8 +78,6 @@ class CAddress : public CService CAddress(); explicit CAddress(CService ipIn, uint64_t nServicesIn=NODE_NETWORK); - void Init(); - IMPLEMENT_SERIALIZE ( CAddress* pthis = const_cast(this); @@ -95,8 +93,6 @@ class CAddress : public CService READWRITE(*pip); ) - void print() const; - // TODO: make private (improves encapsulation) public: uint64_t nServices; @@ -127,7 +123,6 @@ class CInv bool IsKnownType() const; const char* GetCommand() const; std::string ToString() const; - void print() const; // TODO: make private (improves encapsulation) public: