1
0

take out routing hints retrieval for display for now.

This commit is contained in:
Sander van Grieken
2022-07-08 12:30:27 +02:00
parent f5933da348
commit a5fc067481

View File

@@ -202,8 +202,8 @@ class QEInvoiceParser(QEInvoice):
self._logger.debug(str(lnaddr.get_routing_info('t')))
return {
'pubkey': lnaddr.pubkey.serialize().hex(),
't': lnaddr.get_routing_info('t')[0][0].hex(),
'r': lnaddr.get_routing_info('r')[0][0][0].hex()
't': '', #lnaddr.get_routing_info('t')[0][0].hex(),
'r': '' #lnaddr.get_routing_info('r')[0][0][0].hex()
}
@pyqtSlot()