aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.cpp
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2015-03-24 05:31:55 -0700
committerPieter Wuille <[email protected]>2015-03-24 05:33:31 -0700
commit45d6d0bce54dd387a1328c8433340dece2bf59c8 (patch)
tree08b22ddc4058133b77ca7a733191889d62190d6d /src/wallet/wallet.cpp
parentMerge pull request #5938 (diff)
parentuse constant references for strings in functions in wallet/*.* (diff)
downloaddiscoin-45d6d0bce54dd387a1328c8433340dece2bf59c8.tar.xz
discoin-45d6d0bce54dd387a1328c8433340dece2bf59c8.zip
Merge pull request #5933
341e238 use constant references for strings in functions in wallet/*.* (Philip Kaufmann)
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 44b416d49..167639b53 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()))
{