diff --git a/code/go/0chain.net/conductor/conductrpc/entity.go b/code/go/0chain.net/conductor/conductrpc/entity.go index 13461df47..a65f75a8c 100644 --- a/code/go/0chain.net/conductor/conductrpc/entity.go +++ b/code/go/0chain.net/conductor/conductrpc/entity.go @@ -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) {