Skip to content

Commit

Permalink
fix bug in da.Validate api (#3267)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsite authored Mar 25, 2024
1 parent 9296939 commit c1b41b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodebuilder/da/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit c1b41b0

Please sign in to comment.