Skip to content

Commit

Permalink
Log error
Browse files Browse the repository at this point in the history
  • Loading branch information
lpoli committed Aug 4, 2023
1 parent 73ded20 commit 3c2357f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/go/0chain.net/conductor/conductrpc/entity.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@ func (e *Entity) isMonitor() bool { //nolint:unused,deadcode // might be used la
}

func (e *Entity) BlobberCommitted(blobberID string) {
e.client.blobberCommitted(blobberID)
err := e.client.blobberCommitted(blobberID)
if err != nil {
log.Println(err)
}
}

func (e *Entity) SendFileMetaRoot(blobberID, fileMetaRoot string, ctxCncl context.CancelFunc) {
Expand Down

0 comments on commit 3c2357f

Please sign in to comment.