diff options
| author | Philip Kaufmann <[email protected]> | 2015-03-21 18:40:51 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2015-03-21 18:40:51 +0100 |
| commit | 341e2385d543ba96ae4d4eac649e9312537e1405 (patch) | |
| tree | 0f4c3a1071c1c89e2c7ae63ab67f1e3fbd09f6db /src/wallet/wallet.cpp | |
| parent | Merge #5758: refactor: move BDB (bitdb / db.h) interaction from init.cpp to w... (diff) | |
| download | discoin-341e2385d543ba96ae4d4eac649e9312537e1405.tar.xz discoin-341e2385d543ba96ae4d4eac649e9312537e1405.zip | |
use constant references for strings in functions in wallet/*.*
Diffstat (limited to 'src/wallet/wallet.cpp')
| -rw-r--r-- | src/wallet/wallet.cpp | 2 |
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())) { |