From 3e40d91466d834eb464ab70bbd71cc536db8accb Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 1 Aug 2022 09:50:24 +0100 Subject: [PATCH] changed to hex --- lnbits/wallets/cliche.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnbits/wallets/cliche.py b/lnbits/wallets/cliche.py index bf5f9faf..abf6896a 100644 --- a/lnbits/wallets/cliche.py +++ b/lnbits/wallets/cliche.py @@ -49,7 +49,7 @@ class ClicheWallet(Wallet): if description_hash: ws = create_connection(self.endpoint) ws.send( - f"create-invoice --msatoshi {amount*1000} --description_hash {description_hash.decode()}" + f"create-invoice --msatoshi {amount*1000} --description_hash {description_hash.hex()}" ) r = ws.recv() else: