Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Fix duplilcate check
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapk00 committed Oct 19, 2020
1 parent b6118d7 commit 4fbaa3e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions app/utils/uris.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@ export const parseZcashURI = (uri: string): ZcashURITarget[] | string => {
}

const parsedUri = url.parse(uri);
if (!parsedUri || parsedUri.protocol !== 'zcash:' || !parsedUri.query) {
return 'Bad URI';
}

if (!parsedUri || parsedUri.protocol !== 'zcash:' || !parsedUri.query) {
return 'Invalid URI or protocol';
}
Expand Down

0 comments on commit 4fbaa3e

Please sign in to comment.