Merge pull request #110 from BTCPrivate/fix/stop-text

BTCP server stopped
This commit is contained in:
Jon Layton 2018-03-02 22:00:34 -06:00 committed by GitHub
commit 965bdbecb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -245,10 +245,10 @@ UniValue stop(const UniValue& params, bool fHelp)
if (fHelp || params.size() > 1)
throw runtime_error(
"stop\n"
"\nStop Zcash server.");
"\nStop BTCP server.");
// Shutdown will take long enough that the response should get back
StartShutdown();
return "Zcash server stopping";
return "BTCP server stopping";
}
/**