aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/server.cpp
diff options
context:
space:
mode:
authorMatthew Zipkin <pinheadmz@gmail.com>2023-07-07 14:41:23 -0400
committerMatthew Zipkin <pinheadmz@gmail.com>2024-05-14 10:39:43 -0400
commit466b90562f4785de74b548f7c4a256069e2aaf43 (patch)
treeb911c6d48f8bf93c91b1c39f210a67bc8c2efee5 /src/rpc/server.cpp
parent2ca1460ae3a7217eaa8c5972515bf622bedadfce (diff)
downloadbitcoin-466b90562f4785de74b548f7c4a256069e2aaf43.tar.xz
rpc: Add "jsonrpc" field and drop null "result"/"error" fields
Only for JSON-RPC 2.0 requests.
Diffstat (limited to 'src/rpc/server.cpp')
-rw-r--r--src/rpc/server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp
index f199914095..8e150ef2b7 100644
--- a/src/rpc/server.cpp
+++ b/src/rpc/server.cpp
@@ -364,7 +364,7 @@ UniValue JSONRPCExec(const JSONRPCRequest& jreq)
// but inside a batch, we just include the error object and return HTTP 200
UniValue result = tableRPC.execute(jreq);
- return JSONRPCReplyObj(std::move(result), NullUniValue, jreq.id);
+ return JSONRPCReplyObj(std::move(result), NullUniValue, jreq.id, jreq.m_json_version);
}
/**