From 69d2e9ba678ea90db0bc3f3436d6417f0e1fc2e9 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Thu, 20 Apr 2017 17:52:47 +0200 Subject: [PATCH] wallet: Make IsDummy private in CWalletDBWrapper This is only for use in the low-level functions, and CDB is already a friend class. --- src/wallet/db.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/wallet/db.h b/src/wallet/db.h index 014c6db6c..a0719820a 100644 --- a/src/wallet/db.h +++ b/src/wallet/db.h @@ -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; };