This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` python | |
def convert_channel_id_to_peer_id(channel_id): | |
""" | |
:param channel_id: | |
:return: | |
""" | |
if channel_id is None or channel_id == 'Null': | |
return channel_id | |
else: | |
return 8589934592 | int(channel_id) |