do not mark payments as failed (#750)
This commit is contained in:
parent
fe2cbe8774
commit
b8c99a15d1
1 changed files with 2 additions and 2 deletions
|
|
@ -91,10 +91,10 @@ class FakeWallet(Wallet):
|
||||||
)
|
)
|
||||||
|
|
||||||
async def get_invoice_status(self, checking_id: str) -> PaymentStatus:
|
async def get_invoice_status(self, checking_id: str) -> PaymentStatus:
|
||||||
return PaymentStatus(False)
|
return PaymentStatus(None)
|
||||||
|
|
||||||
async def get_payment_status(self, checking_id: str) -> PaymentStatus:
|
async def get_payment_status(self, checking_id: str) -> PaymentStatus:
|
||||||
return PaymentStatus(False)
|
return PaymentStatus(None)
|
||||||
|
|
||||||
async def paid_invoices_stream(self) -> AsyncGenerator[str, None]:
|
async def paid_invoices_stream(self) -> AsyncGenerator[str, None]:
|
||||||
self.queue = asyncio.Queue(0)
|
self.queue = asyncio.Queue(0)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue