Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim Neunert committed Apr 27, 2023
1 parent 43b1708 commit d81fe24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cryptoadvance/specterext/spectrum/spectrum_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ def start_spectrum(self, app, datadir):
f"Cannot start Spectrum without host ({self._host}), port ({self._port}) or ssl ({self._ssl})"
)
try:
logger.debug(f"Spectrum node is creating a Spectrum instance. tor_type: {app.specter.tor_type}")
logger.debug(f"Spectrum node is creating a Spectrum instance.")
self.spectrum = Spectrum(
self._host,
self._port,
self._ssl,
datadir=datadir,
app=app,
proxy_url=app.specter.proxy_url
if app.specter.tor_type != "none" and app.specter.tor_type != "disabled"
if app.specter.tor_type != "none" and app.specter.tor_type != "disabled"
else None,
)
logger.debug(f"{self.name} is instantiating its BridgeRPC.")
Expand Down

0 comments on commit d81fe24

Please sign in to comment.