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/keystore.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/keystore.cpp')
| -rw-r--r-- | src/keystore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keystore.cpp b/src/keystore.cpp index 482125a39..22cd08f30 100644 --- a/src/keystore.cpp +++ b/src/keystore.cpp @@ -36,7 +36,7 @@ bool CBasicKeyStore::AddKeyPubKey(const CKey& key, const CPubKey &pubkey) bool CBasicKeyStore::AddCScript(const CScript& redeemScript) { if (redeemScript.size() > MAX_SCRIPT_ELEMENT_SIZE) - return error("CBasicKeyStore::AddCScript() : redeemScripts > %i bytes are invalid", MAX_SCRIPT_ELEMENT_SIZE); + return error("CBasicKeyStore::AddCScript(): redeemScripts > %i bytes are invalid", MAX_SCRIPT_ELEMENT_SIZE); LOCK(cs_KeyStore); mapScripts[CScriptID(redeemScript)] = redeemScript; |