Change some Bitcoin strings to Zcash strings.

This commit is contained in:
Sean Bowe
2016-10-26 13:29:05 -06:00
parent ea4c08d43d
commit 58c4c0bba3
5 changed files with 63 additions and 63 deletions

View File

@@ -214,7 +214,7 @@ void RenameThread(const char* name);
*/
template <typename Callable> void TraceThread(const char* name, Callable func)
{
std::string s = strprintf("bitcoin-%s", name);
std::string s = strprintf("zcash-%s", name);
RenameThread(s.c_str());
try
{