wallet: Make IsDummy private in CWalletDBWrapper

This is only for use in the low-level functions, and CDB is already
a friend class.
This commit is contained in:
Wladimir J. van der Laan 2017-04-20 17:52:47 +02:00
parent 33232810dc
commit 69d2e9ba67
1 changed files with 5 additions and 5 deletions

View File

@ -120,16 +120,16 @@ public:
*/
void Flush(bool shutdown);
private:
/** BerkeleyDB specific */
CDBEnv *env;
std::string strFile;
/** Return whether this database handle is a dummy for testing.
* Only to be used at a low level, application should ideally not care
* about this.
*/
bool IsDummy() { return env == nullptr; }
private:
/** BerkeleyDB specific */
CDBEnv *env;
std::string strFile;
};