feat: show failed order error message

This commit is contained in:
Vlad Stan 2023-07-04 12:32:01 +03:00
parent b6b86f5a02
commit 93e362530b
3 changed files with 14 additions and 5 deletions

View file

@ -309,6 +309,7 @@ class OrderExtra(BaseModel):
btc_price: str
shipping_cost: float = 0
shipping_cost_sat: float = 0
fail_message: Optional[str]
@classmethod
async def from_products(cls, products: List[Product]):