diff --git a/apps/cic-eth/cic_eth/eth/erc20.py b/apps/cic-eth/cic_eth/eth/erc20.py index 4a65adc..4fbe2e5 100644 --- a/apps/cic-eth/cic_eth/eth/erc20.py +++ b/apps/cic-eth/cic_eth/eth/erc20.py @@ -524,8 +524,11 @@ def verify_token_info(self, tokens, chain_spec_dict, success_callback, error_cal ], queue=queue, ) - s.link(success_callback) - s.on_error(error_callback) + + if success_callback != None: + s.link(success_callback) + if error_callback != None: + s.on_error(error_callback) s.apply_async() return tokens