diff --git a/wallet-fetcher/source_wallet_fetcher/utils.py b/wallet-fetcher/source_wallet_fetcher/utils.py index 53ee39b..e089158 100644 --- a/wallet-fetcher/source_wallet_fetcher/utils.py +++ b/wallet-fetcher/source_wallet_fetcher/utils.py @@ -13,8 +13,6 @@ def check_token_validity(tokenInfo): raise Exception('Invalid token: decimal fields not present: %s', tokenInfo) if tokenInfo.get("decimals") == INVALID_DECIMAL_NUMBER: raise Exception('Invalid token: decimal fields invalid: %s', tokenInfo) - if "owner" in tokenInfo and tokenInfo.get("owner") == VOID_ADDRESS: - raise Exception('Invalid token: Owner address is void: %s', tokenInfo) def extract_token(wallet_name, token_data): description= 'No description available' if 'description' not in token_data['tokenInfo'] else token_data['tokenInfo']['description']