mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
Merge #10501: remove some unused functions -- ignoring removal of SetPort due to dash#2168
f228b8e
remove some unused functions (Marko Bencun) Pull request description: Identified with `cppcheck --enable=unusedFunction .`. - GetSendBufferSize()'s last use removed in991955e
- SetPort()'s last use removed in7e195e8
- GetfLargeWorkInvalidChainFound() was introduced ine3ba0ef
and never used Tree-SHA512: ea8e5498bec981e42e1342c171c37723c2f5e575c7d6c1a524d9c6cd9b332bdd0d84fddf9e14ca011bb49fb82bd037386382c9afc546b3c2231ae548358bd4f4 Signed-off-by: Pasta <pasta@dashboost.org>
This commit is contained in:
parent
3e483659a8
commit
3b7d3c90d9
@ -3090,7 +3090,6 @@ int CConnman::GetBestHeight() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
unsigned int CConnman::GetReceiveFloodSize() const { return nReceiveFloodSize; }
|
unsigned int CConnman::GetReceiveFloodSize() const { return nReceiveFloodSize; }
|
||||||
unsigned int CConnman::GetSendBufferSize() const{ return nSendBufferMaxSize; }
|
|
||||||
|
|
||||||
CNode::CNode(NodeId idIn, ServiceFlags nLocalServicesIn, int nMyStartingHeightIn, SOCKET hSocketIn, const CAddress& addrIn, uint64_t nKeyedNetGroupIn, uint64_t nLocalHostNonceIn, const CAddress &addrBindIn, const std::string& addrNameIn, bool fInboundIn) :
|
CNode::CNode(NodeId idIn, ServiceFlags nLocalServicesIn, int nMyStartingHeightIn, SOCKET hSocketIn, const CAddress& addrIn, uint64_t nKeyedNetGroupIn, uint64_t nLocalHostNonceIn, const CAddress &addrBindIn, const std::string& addrNameIn, bool fInboundIn) :
|
||||||
nTimeConnected(GetSystemTimeInSeconds()),
|
nTimeConnected(GetSystemTimeInSeconds()),
|
||||||
|
@ -398,8 +398,6 @@ public:
|
|||||||
bool DisconnectNode(const std::string& node);
|
bool DisconnectNode(const std::string& node);
|
||||||
bool DisconnectNode(NodeId id);
|
bool DisconnectNode(NodeId id);
|
||||||
|
|
||||||
unsigned int GetSendBufferSize() const;
|
|
||||||
|
|
||||||
ServiceFlags GetLocalServices() const;
|
ServiceFlags GetLocalServices() const;
|
||||||
|
|
||||||
//!set the max outbound target in bytes
|
//!set the max outbound target in bytes
|
||||||
|
@ -38,12 +38,6 @@ void SetfLargeWorkInvalidChainFound(bool flag)
|
|||||||
fLargeWorkInvalidChainFound = flag;
|
fLargeWorkInvalidChainFound = flag;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GetfLargeWorkInvalidChainFound()
|
|
||||||
{
|
|
||||||
LOCK(cs_warnings);
|
|
||||||
return fLargeWorkInvalidChainFound;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string GetWarnings(const std::string& strFor)
|
std::string GetWarnings(const std::string& strFor)
|
||||||
{
|
{
|
||||||
std::string strStatusBar;
|
std::string strStatusBar;
|
||||||
|
@ -13,7 +13,6 @@ void SetMiscWarning(const std::string& strWarning);
|
|||||||
void SetfLargeWorkForkFound(bool flag);
|
void SetfLargeWorkForkFound(bool flag);
|
||||||
bool GetfLargeWorkForkFound();
|
bool GetfLargeWorkForkFound();
|
||||||
void SetfLargeWorkInvalidChainFound(bool flag);
|
void SetfLargeWorkInvalidChainFound(bool flag);
|
||||||
bool GetfLargeWorkInvalidChainFound();
|
|
||||||
/** Format a string that describes several potential problems detected by the core.
|
/** Format a string that describes several potential problems detected by the core.
|
||||||
* strFor can have three values:
|
* strFor can have three values:
|
||||||
* - "rpc": get critical warnings, which should put the client in safe mode if non-empty
|
* - "rpc": get critical warnings, which should put the client in safe mode if non-empty
|
||||||
|
Loading…
Reference in New Issue
Block a user