diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2016-08-01 02:07:16 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2016-08-01 02:12:47 +0200 |
commit | c7e05b35ab0a791c7a8e2d863e716fdec6f3f671 (patch) | |
tree | 35e71b7fc36174ad2f87d6e4b4027cfaa9b9ff02 | |
parent | b9c1cd81848da9de1baf9c2f29c19c50e549de13 (diff) | |
parent | 29c2d99bc937c7288b64ab8778dc5f4fd74b4f82 (diff) |
Merge #8432: Make CWallet::fFileBacked private.
29c2d99 Make CWallet::fFileBacked private. (Patrick Strateman)
-rw-r--r-- | src/wallet/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 236ef85114..50c94ccfbc 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -581,6 +581,7 @@ private: /* the HD chain data model (external chain counters) */ CHDChain hdChain; + bool fFileBacked; public: /* * Main wallet lock. @@ -591,7 +592,6 @@ public: */ mutable CCriticalSection cs_wallet; - bool fFileBacked; std::string strWalletFile; std::set<int64_t> setKeyPool; |