mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-03 09:56:38 -05:00
wallet: make BackupWallet() const
This commit is contained in:
parent
df3a818d2a
commit
57c569e4d9
2 changed files with 2 additions and 2 deletions
|
@ -4004,7 +4004,7 @@ void CWallet::postInitProcess()
|
|||
chain().requestMempoolTransactions(*this);
|
||||
}
|
||||
|
||||
bool CWallet::BackupWallet(const std::string& strDest)
|
||||
bool CWallet::BackupWallet(const std::string& strDest) const
|
||||
{
|
||||
return database->Backup(strDest);
|
||||
}
|
||||
|
|
|
@ -1098,7 +1098,7 @@ public:
|
|||
*/
|
||||
void postInitProcess();
|
||||
|
||||
bool BackupWallet(const std::string& strDest);
|
||||
bool BackupWallet(const std::string& strDest) const;
|
||||
|
||||
/* Returns true if HD is enabled */
|
||||
bool IsHDEnabled() const;
|
||||
|
|
Loading…
Add table
Reference in a new issue