Skip to content

Commit

Permalink
revert changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nialexsan committed Sep 13, 2023
1 parent b1e0a74 commit 1731787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/util-address/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function sansPrefix(address: string | null): string | null {
*/
export function withPrefix(address: string | null): string | null {
if (address == null) return null
return `0x` + sansPrefix(address)
return "0x" + sansPrefix(address)
}

/**
Expand Down

0 comments on commit 1731787

Please sign in to comment.