def xwallet(event_loop, pool_name, wallet_name, wallet_type, xwallet_cleanup, path_home): xwallet_gen = x_xwallet(event_loop, pool_name, wallet_name, wallet_type, xwallet_cleanup, path_home, None) yield next(xwallet_gen) next(xwallet_gen)
def xwallet(event_loop, xwallet_cleanup, path_home, wallet_config, credential): xwallet_gen = x_xwallet(event_loop, xwallet_cleanup, path_home, wallet_config, credential) yield next(xwallet_gen) next(xwallet_gen)
async def xwallet(pool_name, wallet_name, wallet_type, xwallet_cleanup, path_home): # noinspection PyTypeChecker async for i in x_xwallet(pool_name, wallet_name, wallet_type, xwallet_cleanup, path_home): yield i