Skip to content

Commit

Permalink
fix: use lowercase address
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Jan 15, 2025
1 parent 75b142a commit 49769d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/interchaintestv8/ethereum/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func GetOnlySp1Ics07AddressFromStdout(stdout string) (string, error) {
return "", fmt.Errorf("no matches found in stdout")
}
// Extract the value
return matches[1], nil
return strings.ToLower(matches[1]), nil
}

// From https://medium.com/@zhuytt4/verify-the-owner-of-safe-wallet-with-eth-getproof-7edc450504ff
Expand Down

0 comments on commit 49769d8

Please sign in to comment.