`kraken`: expect `Pair` in search results..

pps_precision_hotfixes
Tyler Goodlet 2023-03-08 17:22:13 -05:00
parent d3192bb8c2
commit aba238e8b1
1 changed files with 4 additions and 4 deletions

View File

@ -453,7 +453,7 @@ async def open_symbol_search(
score_cutoff=50,
)
# repack in dict form
await stream.send(
{item[0]['altname']: item[0]
for item in matches}
)
await stream.send({
pair[0].altname: pair[0]
for pair in matches
})