Skip to content

Commit c1b41b0

Browse files
authored
fix bug in da.Validate api (#3267)
1 parent 9296939 commit c1b41b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nodebuilder/da/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func (s *Service) Validate(
168168
// value is fine for us
169169
fmt.Println("proof", proofs[i] == nil, "commitment", commitment == nil)
170170
isIncluded, _ := s.blobServ.Included(ctx, height, namespace, proofs[i], commitment)
171-
included = append(included, isIncluded)
171+
included[i] = isIncluded
172172
}
173173
return included, nil
174174
}

0 commit comments

Comments
 (0)