You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
336 B
10 lines
336 B
from huobi.client.subuser import SubuserClient
|
|
from huobi.constant import *
|
|
from huobi.utils import *
|
|
|
|
subuser_client = SubuserClient(api_key=g_api_key, secret_key=g_secret_key)
|
|
sub_uids = '122946475'
|
|
|
|
transferability_result = subuser_client.post_set_subuser_transferability(sub_uids, False)
|
|
LogInfo.output_list(transferability_result)
|