aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.cpp
diff options
context:
space:
mode:
authorKarl-Johan Alm <[email protected]>2020-03-02 17:23:34 +0900
committerKarl-Johan Alm <[email protected]>2020-03-02 17:27:35 +0900
commit57c569e4d9779e2263848770e0ba7eab3054a1bf (patch)
tree16046b1f7f722281e7fe615d93c8b30c8afc9567 /src/wallet/wallet.cpp
parentwallet: make getters const (diff)
downloaddiscoin-57c569e4d9779e2263848770e0ba7eab3054a1bf.tar.xz
discoin-57c569e4d9779e2263848770e0ba7eab3054a1bf.zip
wallet: make BackupWallet() const
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r--src/wallet/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index 94bcd4ba6..9d2e5598e 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -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);
}