1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Removing unnecessary console log from the preferences controller (#11828)

This commit is contained in:
ryanml 2021-08-17 01:56:18 -07:00 committed by GitHub
parent 46c4cc1966
commit 5cbece90c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -816,7 +816,6 @@ export default class PreferencesController {
return await tokenContract return await tokenContract
.supportsInterface(ERC721_INTERFACE_ID) .supportsInterface(ERC721_INTERFACE_ID)
.catch((error) => { .catch((error) => {
console.log('error', error);
log.debug(error); log.debug(error);
return false; return false;
}); });