Skip to content

Commit

Permalink
fix: dont spam console with "reverse name not found" messages
Browse files Browse the repository at this point in the history
  • Loading branch information
TripleSpeeder committed Feb 18, 2020
1 parent a6d20b8 commit 6dd6497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TokenAllowanceListContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const TokenAllowanceListContainer = ({contractAddress, owner, spenders}) => {
const reverseName = await ResolverContract.methods.name(nh).call()
foundNames[spender] = reverseName
} catch(error) {
console.log(`No reverse name found for ${spender}`)
// console.log(`No reverse name found for ${spender}`)
}
}
if (cancelled) {
Expand Down

0 comments on commit 6dd6497

Please sign in to comment.