From 172c277c2d68cecbbc186550a505caa0e8020ee6 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Mon, 28 Aug 2023 12:02:58 +0200 Subject: [PATCH] fakewallet: set tag of description_hash invoice correctly (#1901) --- 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 9fcc2e913..0a4354760 100644 --- a/lnbits/wallets/fake.py +++ b/lnbits/wallets/fake.py @@ -62,7 +62,7 @@ class FakeWallet(Wallet): data["tags_set"] = ["h"] data["description_hash"] = description_hash elif unhashed_description: - data["tags_set"] = ["d"] + data["tags_set"] = ["h"] data["description_hash"] = hashlib.sha256(unhashed_description).digest() else: data["tags_set"] = ["d"]