fix(boltz): sanitize invoice description (#2731)

Boltz rejects nbsp char (produced by JS Intl.NumberFormat api), so simply replace it with normal space
This commit is contained in:
jackstar12 2024-10-09 19:32:56 +02:00 committed by GitHub
parent 76b01695a0
commit 512c85592f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -95,8 +95,10 @@ class BoltzWallet(Wallet):
wallet_id=self.wallet_id,
accept_zero_conf=True,
external_pay=True,
description=memo,
)
if memo is not None:
# boltz rejects nbsp char (produced by JS Intl.NumberFormat api)
request.description = memo.replace("\xa0", " ")
response: boltzrpc_pb2.CreateReverseSwapResponse
try:
response = await self.rpc.CreateReverseSwap(request, metadata=self.metadata)