Browse Source

take out routing hints retrieval for display for now.

patch-4
Sander van Grieken 3 years ago
parent
commit
a5fc067481
  1. 4
      electrum/gui/qml/qeinvoice.py

4
electrum/gui/qml/qeinvoice.py

@ -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()

Loading…
Cancel
Save