Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
OGPoyraz committed Jun 24, 2024
1 parent ba7ec73 commit 5398f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/normalize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function normalizeContractAddress(address: string): Hex | string {
// Check if the address is in octal format, convert to hexadecimal
if (address.startsWith('0o')) {
// If octal, convert to hexadecimal
return octalToHex(address as string);
return octalToHex(address);
}

// Check if the address is in decimal format, convert to hexadecimal
Expand Down

0 comments on commit 5398f03

Please sign in to comment.