Import missing `_accounts2clients` table
parent
569674517f
commit
1345b250bc
|
@ -57,6 +57,7 @@ from piker.clearing._messages import (
|
|||
BrokerdError,
|
||||
)
|
||||
from .api import (
|
||||
_accounts2clients,
|
||||
_adhoc_futes_set,
|
||||
log,
|
||||
get_config,
|
||||
|
@ -112,8 +113,6 @@ async def handle_order_requests(
|
|||
|
||||
) -> None:
|
||||
|
||||
global _accounts2clients
|
||||
|
||||
request_msg: dict
|
||||
async for request_msg in ems_order_stream:
|
||||
log.info(f'Received order request {request_msg}')
|
||||
|
@ -271,7 +270,6 @@ async def trades_dialogue(
|
|||
|
||||
accounts_def = config.load_accounts(['ib'])
|
||||
|
||||
global _accounts2clients
|
||||
global _client_cache
|
||||
|
||||
# deliver positions to subscriber before anything else
|
||||
|
@ -283,7 +281,6 @@ async def trades_dialogue(
|
|||
trio.open_nursery() as nurse,
|
||||
open_client_proxies() as (proxies, aioclients),
|
||||
):
|
||||
# for account, client in _accounts2clients.items():
|
||||
for account, proxy in proxies.items():
|
||||
|
||||
client = aioclients[account]
|
||||
|
|
Loading…
Reference in New Issue