`kraken`: catch value error not index on missing `src_fiat` in pair
parent
afc45a8e16
commit
090d1ba524
|
@ -509,7 +509,9 @@ async def trades_dialogue(
|
||||||
for bsuid in table.pps:
|
for bsuid in table.pps:
|
||||||
try:
|
try:
|
||||||
dst_name_start = bsuid.rindex(src_fiat)
|
dst_name_start = bsuid.rindex(src_fiat)
|
||||||
except IndexError:
|
except (
|
||||||
|
ValueError, # substr not found
|
||||||
|
):
|
||||||
# TODO: handle nested positions..(i.e.
|
# TODO: handle nested positions..(i.e.
|
||||||
# positions where the src fiat was used to
|
# positions where the src fiat was used to
|
||||||
# buy some other dst which was furhter used
|
# buy some other dst which was furhter used
|
||||||
|
|
Loading…
Reference in New Issue