Remove log lines for getting lnd external address from squeak core (#1256)

This commit is contained in:
Jonathan Zernik 2021-09-09 18:10:50 -07:00 committed by GitHub
parent f587acc095
commit f3fa5d40ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -193,9 +193,7 @@ class SqueakCore:
Optional[LightningAddressHostPort]: The host and port of the lnd node if possible.
"""
info = self.lightning_client.get_info()
logger.info("Packaging offer with lnd info: {}".format(info))
uris = info.uris
logger.info("Packaging offer with uris: {}".format(uris))
for uri in uris:
pubkey, address = uri.split("@")
host, port_str = address.split(":")