diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-03-07 09:16:46 +0100 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-03-07 09:16:46 +0100 |
commit | fdab309670886f9a1b618264f45a4a6527b71397 (patch) | |
tree | 67dcf0740476b32c8873080591e3d83402c45c73 /src/wallet | |
parent | 19be26afe3d04783a92d032b55bf3fb1e2ae63cc (diff) |
[trivial] Fix typos introduced in 7184e25c80aa8b1629a700bb7a7e290ad0bb2792
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/walletdb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/walletdb.h b/src/wallet/walletdb.h index 6b847cedbc..0d32df1578 100644 --- a/src/wallet/walletdb.h +++ b/src/wallet/walletdb.h @@ -172,11 +172,11 @@ public: DBErrors ZapSelectTx(std::vector<uint256>& vHashIn, std::vector<uint256>& vHashOut); /* Try to (very carefully!) recover wallet database (with a possible key type filter) */ static bool Recover(const std::string& filename, void *callbackDataIn, bool (*recoverKVcallback)(void* callbackData, CDataStream ssKey, CDataStream ssValue)); - /* Recover convenience-function to bypass the key filter callback, called when verify failes, recoveres everything */ + /* Recover convenience-function to bypass the key filter callback, called when verify fails, recovers everything */ static bool Recover(const std::string& filename); /* Recover filter (used as callback), will only let keys (cryptographical keys) as KV/key-type pass through */ static bool RecoverKeysOnlyFilter(void *callbackData, CDataStream ssKey, CDataStream ssValue); - /* Function to determin if a certain KV/key-type is a key (cryptographical key) type */ + /* Function to determine if a certain KV/key-type is a key (cryptographical key) type */ static bool IsKeyType(const std::string& strType); /* verifies the database environment */ static bool VerifyEnvironment(const std::string& walletFile, const boost::filesystem::path& dataDir, std::string& errorStr); |