(client: WshClient, data: string, opts?: RpcOpts)
| 74 | |
| 75 | // command "blockinfo" [call] |
| 76 | BlockInfoCommand(client: WshClient, data: string, opts?: RpcOpts): Promise<BlockInfoData> { |
| 77 | if (this.mockClient) return this.mockClient.mockWshRpcCall(client, "blockinfo", data, opts); |
| 78 | return client.wshRpcCall("blockinfo", data, opts); |
| 79 | } |
| 80 | |
| 81 | // command "blockjobstatus" [call] |
| 82 | BlockJobStatusCommand(client: WshClient, data: string, opts?: RpcOpts): Promise<BlockJobStatusData> { |
nothing calls this directly
no test coverage detected