Unreverse ordering

pull/984/head
Taylor Gerring 10 years ago
parent 5c6540452a
commit 44a7f997c3
  1. 3
      rpc/http.go

@ -111,10 +111,9 @@ func JSONRPC(pipe *xeth.XEth) http.Handler {
// make response omitting nil entries // make response omitting nil entries
respBatchComp := make([]*interface{}, resCount) respBatchComp := make([]*interface{}, resCount)
resCount = resCount - 1
for _, v := range resBatch { for _, v := range resBatch {
if v != nil { if v != nil {
respBatchComp[resCount] = v respBatchComp[len(respBatchComp)-resCount] = v
resCount = resCount - 1 resCount = resCount - 1
} }
} }

Loading…
Cancel
Save