Skip to content

Commit

Permalink
Merge pull request #1 from ExodusMovement/rich/remove-warning
Browse files Browse the repository at this point in the history
chore: remove checksum address warning in production
  • Loading branch information
RichAyotte committed Nov 18, 2021
2 parents 816124a + 78f4ec8 commit 06805c1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/utils.ts
Expand Up @@ -14,7 +14,6 @@ export function validateSolidityTypeInstance(value: JSBI, solidityType: Solidity
export function validateAndParseAddress(address: string): string {
try {
const checksummedAddress = getAddress(address)
warning(address === checksummedAddress, `${address} is not checksummed.`)
return checksummedAddress
} catch (error) {
invariant(false, `${address} is not a valid address.`)
Expand Down

0 comments on commit 06805c1

Please sign in to comment.