aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/db.h
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/db.h
parentf3948a30cd27928fdf9dffbbf90ea6430c869edf (diff)
downloadbitcoin-341e2385d543ba96ae4d4eac649e9312537e1405.tar.xz
use constant references for strings in functions in wallet/*.*
Diffstat (limited to 'src/wallet/db.h')
-rw-r--r--src/wallet/db.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/db.h b/src/wallet/db.h
index 71133f9699..0c2c139d89 100644
--- a/src/wallet/db.h
+++ b/src/wallet/db.h
@@ -59,7 +59,7 @@ public:
enum VerifyResult { VERIFY_OK,
RECOVER_OK,
RECOVER_FAIL };
- VerifyResult Verify(std::string strFile, bool (*recoverFunc)(CDBEnv& dbenv, std::string strFile));
+ VerifyResult Verify(const std::string& strFile, bool (*recoverFunc)(CDBEnv& dbenv, const std::string& strFile));
/**
* Salvage data from a file that Verify says is bad.
* fAggressive sets the DB_AGGRESSIVE flag (see berkeley DB->verify() method documentation).
@@ -68,7 +68,7 @@ public:
* for huge databases.
*/
typedef std::pair<std::vector<unsigned char>, std::vector<unsigned char> > KeyValPair;
- bool Salvage(std::string strFile, bool fAggressive, std::vector<KeyValPair>& vResult);
+ bool Salvage(const std::string& strFile, bool fAggressive, std::vector<KeyValPair>& vResult);
bool Open(const boost::filesystem::path& path);
void Close();