mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
Merge pull request #5520
bdb6a71
IsNull doesn't change CBlockLocator, add const hint (Pavel Janík)1b37333
Remove no longer needed declaration of CBlockLocator (Pavel Janík)
This commit is contained in:
commit
3b95808428
2
src/db.h
2
src/db.h
@ -23,8 +23,6 @@
|
|||||||
class CDiskBlockIndex;
|
class CDiskBlockIndex;
|
||||||
class COutPoint;
|
class COutPoint;
|
||||||
|
|
||||||
struct CBlockLocator;
|
|
||||||
|
|
||||||
extern unsigned int nWalletDBUpdated;
|
extern unsigned int nWalletDBUpdated;
|
||||||
|
|
||||||
void ThreadFlushWalletDB(const std::string& strWalletFile);
|
void ThreadFlushWalletDB(const std::string& strWalletFile);
|
||||||
|
@ -162,7 +162,7 @@ struct CBlockLocator
|
|||||||
vHave.clear();
|
vHave.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IsNull()
|
bool IsNull() const
|
||||||
{
|
{
|
||||||
return vHave.empty();
|
return vHave.empty();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user