Browse Source

take out routing hints retrieval for display for now.

master
Sander van Grieken 4 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'))) self._logger.debug(str(lnaddr.get_routing_info('t')))
return { return {
'pubkey': lnaddr.pubkey.serialize().hex(), 'pubkey': lnaddr.pubkey.serialize().hex(),
't': lnaddr.get_routing_info('t')[0][0].hex(), 't': '', #lnaddr.get_routing_info('t')[0][0].hex(),
'r': lnaddr.get_routing_info('r')[0][0][0].hex() 'r': '' #lnaddr.get_routing_info('r')[0][0][0].hex()
} }
@pyqtSlot() @pyqtSlot()

Loading…
Cancel
Save