Fix list out of range on contract formalized order logging

This commit is contained in:
Reckless_Satoshi 2023-09-14 02:31:42 -07:00
parent 2046857ee4
commit 1015ba3433
No known key found for this signature in database
GPG Key ID: 9C4585B561315571

View File

@ -1344,7 +1344,7 @@ class Logics:
pass pass
send_notification.delay(order_id=order.id, message="order_taken_confirmed") send_notification.delay(order_id=order.id, message="order_taken_confirmed")
order.log( order.log(
f"<b>Contract formalized.</b> Maker: Robot({order.maker.robot.id},{order.maker}). Taker: Robot({order.taker.robot.id},{order.taker}). API median price {order.currency.exchange_rate} {Currency.currency_choices[order.currency.currency-1][1]}/BTC. Premium is {order.premium}%. Contract size {order.last_satoshis} Sats" f"<b>Contract formalized.</b> Maker: Robot({order.maker.robot.id},{order.maker}). Taker: Robot({order.taker.robot.id},{order.taker}). API median price {order.currency.exchange_rate} {dict(Currency.currency_choices)[order.currency.currency]}/BTC. Premium is {order.premium}%. Contract size {order.last_satoshis} Sats"
) )
return True return True