From ffb0f4ccb02591ecab1f571b97aa74a8e9e2986e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Fri, 14 Apr 2023 12:03:06 +0200 Subject: [PATCH] hotfix fakewallet --- lnbits/wallets/fake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnbits/wallets/fake.py b/lnbits/wallets/fake.py index 0927cd8b..62f2bc44 100644 --- a/lnbits/wallets/fake.py +++ b/lnbits/wallets/fake.py @@ -45,7 +45,7 @@ class FakeWallet(Wallet): ) -> InvoiceResponse: data: Dict = { "out": False, - "amount": amount, + "amount": amount * 1000, "currency": "bc", "privkey": self.privkey, "memo": memo,