diff options
| author | Pieter Wuille <[email protected]> | 2015-03-24 05:31:55 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2015-03-24 05:33:31 -0700 |
| commit | 45d6d0bce54dd387a1328c8433340dece2bf59c8 (patch) | |
| tree | 08b22ddc4058133b77ca7a733191889d62190d6d /src/wallet/wallet.cpp | |
| parent | Merge pull request #5938 (diff) | |
| parent | use constant references for strings in functions in wallet/*.* (diff) | |
| download | discoin-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.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())) { |