diff --git a/nodebuilder/da/service.go b/nodebuilder/da/service.go index ea435a5c36..d43ba694a6 100644 --- a/nodebuilder/da/service.go +++ b/nodebuilder/da/service.go @@ -168,7 +168,7 @@ func (s *Service) Validate( // value is fine for us fmt.Println("proof", proofs[i] == nil, "commitment", commitment == nil) isIncluded, _ := s.blobServ.Included(ctx, height, namespace, proofs[i], commitment) - included = append(included, isIncluded) + included[i] = isIncluded } return included, nil }