We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 560d944 commit 4e1c05cCopy full SHA for 4e1c05c
src/provider/jsonrpc/jsonrpc.ts
@@ -180,7 +180,7 @@ export class JSONRPCProvider implements Provider {
180
181
async getStatus(): Promise<Status> {
182
return await RestService.post<Status>(this.baseURL, {
183
- request: newRequest(CommonEndpoint.STATUS),
+ request: newRequest(CommonEndpoint.STATUS, [null]),
184
});
185
}
186
src/provider/websocket/ws.ts
@@ -294,7 +294,7 @@ export class WSProvider implements Provider {
294
295
296
const response = await this.sendRequest<Status>(
297
- newRequest(CommonEndpoint.STATUS)
+ newRequest(CommonEndpoint.STATUS, [null])
298
);
299
300
return this.parseResponse<Status>(response);
0 commit comments