docs: inline docs for batch call handler

This commit is contained in:
Mohamed Sohail 2021-12-14 17:55:50 +03:00
parent 92797c4ea5
commit e597be41d5
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D
1 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,7 @@ func batchCall() (bool, BatchResponse) {
var batchResponse BatchResponse
rpcResponses, err := RpcClient.EthBatchRpcCall(jsonrpc.RPCRequests{
// The rpc call id here is guranteed to be in order of appearance starting from index 0
jsonrpc.NewRequest("eth_syncing"),
jsonrpc.NewRequest("parity_chain"),
})
@ -31,11 +32,13 @@ func batchCall() (bool, BatchResponse) {
return false, batchResponse
}
// Order and format isn't guranteed with batch calls therefore we individually process/transform each result in the map
if syncStatus, ok := rpcResponses[0]; ok {
val, err := syncStatus.GetBool()
if err != nil {
return false, batchResponse
}
// If sync is complete the rpc result is false, however this call dones't gurantee all blocks have been imported
batchResponse.SyncComplete = !val
}