Merge #9132: Make strWalletFile const

f734505 Make strWalletFile const (Jonas Schnelli)
This commit is contained in:
Wladimir J. van der Laan 2016-11-15 10:05:49 +01:00
commit f54e4605fc
No known key found for this signature in database
GPG key ID: 74810B012346C9A6

View file

@ -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;
}