kraken: use new `open_trade_dialog()` ep name B)

basic_buy_bot
Tyler Goodlet 2023-06-14 17:23:20 -04:00
parent f792ecf3af
commit 9972bd387a
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ from .feed import (
stream_quotes,
)
from .broker import (
trades_dialogue,
open_trade_dialog,
norm_trade_records,
)
@ -43,7 +43,7 @@ from .broker import (
__all__ = [
'get_client',
'get_mkt_info',
'trades_dialogue',
'open_trade_dialog',
'open_history_client',
'open_symbol_search',
'stream_quotes',

View File

@ -417,7 +417,7 @@ def trades2pps(
@tractor.context
async def trades_dialogue(
async def open_trade_dialog(
ctx: tractor.Context,
) -> AsyncIterator[dict[str, Any]]: