Merge pull request #140 from 8thlight/fix-index-out-of-range

fix index out of range on lightSync; hopefully the new integration te…
This commit is contained in:
Takayuki Goto 2019-01-24 09:56:35 -06:00 committed by GitHub
commit d7dde86942

View File

@ -45,11 +45,15 @@ func (client RpcClient) SupportedModules() (map[string]string, error) {
func (client RpcClient) BatchCall(batch []BatchElem) error { func (client RpcClient) BatchCall(batch []BatchElem) error {
var rpcBatch []rpc.BatchElem var rpcBatch []rpc.BatchElem
for index, batchElem := range batch { for _, batchElem := range batch {
rpcBatch[index].Result = batchElem.Result var newBatchElem = rpc.BatchElem{
rpcBatch[index].Method = batchElem.Method Result: batchElem.Result,
rpcBatch[index].Args = batchElem.Args Method: batchElem.Method,
rpcBatch[index].Error = batchElem.Error Args: batchElem.Args,
Error: batchElem.Error,
}
rpcBatch = append(rpcBatch, newBatchElem)
} }
return client.client.BatchCall(rpcBatch) return client.client.BatchCall(rpcBatch)
} }