From 6fae6dab929babf2bb3c636099da5ea88b7a5d68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Wed, 5 Apr 2023 11:35:09 +0200 Subject: [PATCH] remove *1000 for fake --- 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 62f2bc44c..0927cd8b1 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 * 1000, + "amount": amount, "currency": "bc", "privkey": self.privkey, "memo": memo,