diff options
| author | Pavel JanÃk <[email protected]> | 2015-01-08 11:44:25 +0100 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2015-01-31 17:38:28 -0500 |
| commit | 5262fde0ecd19f1febbfcd488f2be41c5dffd047 (patch) | |
| tree | 413401ca7111906838b0f5f5d0c0604bcce52d19 /src/walletdb.cpp | |
| parent | Fix typo (diff) | |
| download | discoin-5262fde0ecd19f1febbfcd488f2be41c5dffd047.tar.xz discoin-5262fde0ecd19f1febbfcd488f2be41c5dffd047.zip | |
Remove whitespaces before double colon in errors and logs
Diffstat (limited to 'src/walletdb.cpp')
| -rw-r--r-- | src/walletdb.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/walletdb.cpp b/src/walletdb.cpp index d4d2e1674..b2daf036f 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -210,7 +210,7 @@ void CWalletDB::ListAccountCreditDebit(const string& strAccount, list<CAccountin Dbc* pcursor = GetCursor(); if (!pcursor) - throw runtime_error("CWalletDB::ListAccountCreditDebit() : cannot create DB cursor"); + throw runtime_error("CWalletDB::ListAccountCreditDebit(): cannot create DB cursor"); unsigned int fFlags = DB_SET_RANGE; while (true) { @@ -226,7 +226,7 @@ void CWalletDB::ListAccountCreditDebit(const string& strAccount, list<CAccountin else if (ret != 0) { pcursor->close(); - throw runtime_error("CWalletDB::ListAccountCreditDebit() : error scanning DB"); + throw runtime_error("CWalletDB::ListAccountCreditDebit(): error scanning DB"); } // Unserialize |