diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-05-25 16:11:39 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-05-25 16:19:54 +0200 |
| commit | 0f1040ba5213bde402e8ac9c1e4da91ca319c9de (patch) | |
| tree | ac50062f0b1a6a328e96e5280b725f832271945d /src/util.cpp | |
| parent | Merge pull request #4228 (diff) | |
| parent | remove CPubKey::VerifyCompact( ) which is never used (diff) | |
| download | discoin-0f1040ba5213bde402e8ac9c1e4da91ca319c9de.tar.xz discoin-0f1040ba5213bde402e8ac9c1e4da91ca319c9de.zip | |
Merge pull request #4183
f40dbee remove CPubKey::VerifyCompact( ) which is never used (Kamil Domanski)
28b6c1d remove GetMedianTime( ) which is never used (Kamil Domanski)
5bd4adc remove LookupHostNumeric( ) which is never used (Kamil Domanski)
595f691 remove LogException( ) which is never used (Kamil Domanski)
f4057cb remove CTransaction::IsNewerThan which is never used (Kamil Domanski)
0e31e56 remove CWallet::AddReserveKey which is never used (Kamil Domanski)
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/util.cpp b/src/util.cpp index f7ceb3e95..336ef3172 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -887,12 +887,6 @@ static std::string FormatException(std::exception* pex, const char* pszThread) "UNKNOWN EXCEPTION \n%s in %s \n", pszModule, pszThread); } -void LogException(std::exception* pex, const char* pszThread) -{ - std::string message = FormatException(pex, pszThread); - LogPrintf("\n%s", message); -} - void PrintExceptionContinue(std::exception* pex, const char* pszThread) { std::string message = FormatException(pex, pszThread); |