aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2015-03-21 18:40:51 +0100
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2015-03-21 18:40:51 +0100
commit341e2385d543ba96ae4d4eac649e9312537e1405 (patch)
tree0f4c3a1071c1c89e2c7ae63ab67f1e3fbd09f6db /src/wallet/wallet.cpp
parentf3948a30cd27928fdf9dffbbf90ea6430c869edf (diff)
downloadbitcoin-341e2385d543ba96ae4d4eac649e9312537e1405.tar.xz
use constant references for strings in functions in wallet/*.*
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 44b416d496..167639b53d 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -345,7 +345,7 @@ void CWallet::Flush(bool shutdown)
bitdb.Flush(shutdown);
}
-bool CWallet::Verify(const string walletFile, string& warningString, string& errorString)
+bool CWallet::Verify(const string& walletFile, string& warningString, string& errorString)
{
if (!bitdb.Open(GetDataDir()))
{