Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Freddy Li authored and Freddy Li committed Sep 18, 2024
1 parent ba57d08 commit 445b2f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chains/substrate/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func (c *SubstrateClient) checkExtrinsicSuccess(extHash types.Hash, blockHash ty
extrinsicCallCounter := 0
extrinsicSuccessCounter := 0
for _, event := range blockEvents {
if strings.ToLower(event.Name) == strings.ToLower(extrinsicMethod) {
if strings.EqualFold(event.Name, extrinsicMethod) {
extrinsicCallCounter++
}

Expand Down
2 changes: 1 addition & 1 deletion mock/substrateListener.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 445b2f2

Please sign in to comment.