From 59ac34e3442d5cc06d1941bf73a7dd3f4a8185c2 Mon Sep 17 00:00:00 2001 From: Jay Graber Date: Fri, 11 Nov 2016 11:14:18 -0800 Subject: [PATCH] s/Bitcoin/Zcash in JSONRPCError --- src/rpcmining.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rpcmining.cpp b/src/rpcmining.cpp index af34c291c..d6bd4dd3e 100644 --- a/src/rpcmining.cpp +++ b/src/rpcmining.cpp @@ -478,10 +478,10 @@ Value getblocktemplate(const Array& params, bool fHelp) throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid mode"); if (vNodes.empty()) - throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Bitcoin is not connected!"); + throw JSONRPCError(RPC_CLIENT_NOT_CONNECTED, "Zcash is not connected!"); if (IsInitialBlockDownload()) - throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Bitcoin is downloading blocks..."); + throw JSONRPCError(RPC_CLIENT_IN_INITIAL_DOWNLOAD, "Zcash is downloading blocks..."); static unsigned int nTransactionsUpdatedLast;