From a5fc06748163e1dc562759f3b93fab6f32133401 Mon Sep 17 00:00:00 2001 From: Sander van Grieken Date: Fri, 8 Jul 2022 12:30:27 +0200 Subject: [PATCH] take out routing hints retrieval for display for now. --- electrum/gui/qml/qeinvoice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/qml/qeinvoice.py b/electrum/gui/qml/qeinvoice.py index 63dbdec51..a0c57bf3f 100644 --- a/electrum/gui/qml/qeinvoice.py +++ b/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()