Skip to content

Commit

Permalink
Fixed error message
Browse files Browse the repository at this point in the history
  • Loading branch information
UlyanaAndrukhiv committed Oct 22, 2024
1 parent 6c7c189 commit 59cf83b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/commands/storage/backfill_tx_error_messages.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ func (b *BackfillTxErrorMessagesCommand) Handler(ctx context.Context, request *a

resp, execNode, err := b.backend.GetTransactionErrorMessagesFromAnyEN(ctx, data.executionNodeIds.ToSkeleton(), req)
if err != nil {
return nil, fmt.Errorf("failed to retrieve transaction error messages for block id %#v: %w", blockID, err)
return nil, fmt.Errorf("failed to retrieve transaction error messages for block id %v: %w", blockID, err)
}

err = b.storeTransactionResultErrorMessages(blockID, resp, execNode)
Expand Down

0 comments on commit 59cf83b

Please sign in to comment.