From 282b7b73c50f375fd211c33ec8b3f801ae32654c Mon Sep 17 00:00:00 2001 From: Chenna Keshava B S <21219765+ckeshava@users.noreply.github.com> Date: Fri, 20 Feb 2026 00:36:12 +0900 Subject: [PATCH] Expand Error Message for rpcInternal (#4959) Validator operators have been confused by the rpcInternal error, which can occur if the server is not running in another process. --- src/xrpld/net/detail/RPCCall.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/xrpld/net/detail/RPCCall.cpp b/src/xrpld/net/detail/RPCCall.cpp index 95dab84c9..cbf037c55 100644 --- a/src/xrpld/net/detail/RPCCall.cpp +++ b/src/xrpld/net/detail/RPCCall.cpp @@ -1530,7 +1530,10 @@ struct RPCCallImp // Receive reply if (strData.empty()) - Throw("no response from server"); + Throw( + "no response from server. Please " + "ensure that the rippled server is running in another " + "process."); // Parse reply JLOG(j.debug()) << "RPC reply: " << strData << std::endl;