Skip to content

Commit

Permalink
final opbot [goreleaser]
Browse files Browse the repository at this point in the history
  • Loading branch information
trajan0x committed Jun 22, 2024
1 parent 4e3a1b6 commit c1a5473
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/opbot/botmd/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ func toExplorerSlackLink(ogHash string) string {
rfqHash := strings.ToUpper(ogHash)
// cut off 0x
if len(rfqHash) > 0 {
rfqHash = strings.ToUpper(rfqHash[2:])
rfqHash = strings.ToLower(rfqHash[2:])
}

Check warning on line 230 in contrib/opbot/botmd/commands.go

View check run for this annotation

Codecov / codecov/patch

contrib/opbot/botmd/commands.go#L225-L230

Added lines #L225 - L230 were not covered by tests

return fmt.Sprintf("<https://anon.to/?https://explorer.synapseprotocol.com/tx/%s|%s>", rfqHash, ogHash)

Check warning on line 232 in contrib/opbot/botmd/commands.go

View check run for this annotation

Codecov / codecov/patch

contrib/opbot/botmd/commands.go#L232

Added line #L232 was not covered by tests
Expand Down

0 comments on commit c1a5473

Please sign in to comment.