Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ToniRamirezM committed Feb 9, 2024
1 parent 9c9813f commit 221220c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ func main() {
}
for _, result := range results {
log.Infof("Removing tx %s", result.ID)
client.Remove(ctx, result.ID)
err = client.Remove(ctx, result.ID)
if err != nil {
log.Errorf("Error removing tx %s: %s", result.ID, err)
}
}
}

Expand Down

0 comments on commit 221220c

Please sign in to comment.