Skip to content

Commit

Permalink
Merge pull request #44 from RahulBansal123/patch-1
Browse files Browse the repository at this point in the history
Fix: Typo in avs_writer.go
  • Loading branch information
samlaf authored Apr 25, 2024
2 parents 5ba9e77 + db7f0a8 commit 2a09fe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/chainio/avs_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func (w *AvsWriter) SendAggregatedResponse(
}
receipt, err := w.TxMgr.Send(ctx, tx)
if err != nil {
w.logger.Errorf("Error submitting CreateNewTask tx")
w.logger.Errorf("Error submitting respondToTask tx")
return nil, err
}
return receipt, nil
Expand All @@ -141,7 +141,7 @@ func (w *AvsWriter) RaiseChallenge(
}
receipt, err := w.TxMgr.Send(ctx, tx)
if err != nil {
w.logger.Errorf("Error submitting CreateNewTask tx")
w.logger.Errorf("Error submitting RaiseChallenge tx")
return nil, err
}
return receipt, nil
Expand Down

0 comments on commit 2a09fe9

Please sign in to comment.