From fc6652d4612dd29028a54987422a5fa276aca04f Mon Sep 17 00:00:00 2001 From: minibits-cash Date: Wed, 8 May 2024 00:38:31 +0200 Subject: [PATCH] Add missing rate variables --- cashu/lightning/fake.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cashu/lightning/fake.py b/cashu/lightning/fake.py index f5b5fe1b..1c544a99 100644 --- a/cashu/lightning/fake.py +++ b/cashu/lightning/fake.py @@ -29,7 +29,8 @@ class FakeWallet(LightningBackend): - fake_btc_price = 1e8 / 1337 + fake_btcusd_price = 1e8 / 1556 + fake_btceur_price = 1e8 / 1672 queue: asyncio.Queue[Bolt11] = asyncio.Queue(0) payment_secrets: Dict[str, str] = dict() paid_invoices: Set[str] = set()