From 1146cb5305b1082193a67ccf7a009263f6cb7422 Mon Sep 17 00:00:00 2001 From: Justin Welch <juswelch@gmail.com> Date: Wed, 12 Jul 2017 15:33:44 -0400 Subject: [PATCH] needs to be jsonrpc instead of json-rpc to match the spec --- src/api/transports/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/transports/http.js b/src/api/transports/http.js index 59099dd..24e2e9a 100644 --- a/src/api/transports/http.js +++ b/src/api/transports/http.js @@ -11,7 +11,7 @@ export default class HttpTransport extends Transport { const id = data.id || this.id++; const payload = { id, - "json-rpc": '2.0', + "jsonrpc": '2.0', method: data.method, params: data.params, }; -- GitLab