Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(nodebuilder/da): remove random print #4029

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions nodebuilder/da/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"context"
"encoding/binary"
"encoding/json"
"fmt"
"strings"

logging "github.com/ipfs/go-log/v2"
Expand Down Expand Up @@ -256,7 +255,6 @@ func (s *Service) Validate(
// invalid proof") but analysis of the code in celestia-node implies this should never happen -
// maybe it's caused by openrpc? there is no way of gently handling errors here, but returned
// value is fine for us
fmt.Println("proof", proofs[i] == nil, "commitment", commitment == nil)
isIncluded, _ := s.blobServ.Included(ctx, height, ns, proofs[i], commitment)
included[i] = isIncluded
}
Expand Down
Loading