From f7345050e9ad6a67b722c092735518bd2f6f152a Mon Sep 17 00:00:00 2001 From: Jonas Schnelli Date: Fri, 11 Nov 2016 14:32:38 +0100 Subject: [PATCH] Make strWalletFile const --- src/wallet/wallet.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index a527c6d84..409d81704 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -600,7 +600,7 @@ public: */ mutable CCriticalSection cs_wallet; - std::string strWalletFile; + const std::string strWalletFile; void LoadKeyPool(int nIndex, const CKeyPool &keypool) { @@ -625,11 +625,9 @@ public: SetNull(); } - CWallet(const std::string& strWalletFileIn) + CWallet(const std::string& strWalletFileIn) : strWalletFile(strWalletFileIn) { SetNull(); - - strWalletFile = strWalletFileIn; fFileBacked = true; }