Browse Source

logging: fix another call with multiple args

did a search with following regex now: logger\..*\(.*,
regtest_lnd
SomberNight 6 years ago
parent
commit
e63157c2ab
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/plugins/cosigner_pool/qt.py

2
electrum/plugins/cosigner_pool/qt.py

@ -193,7 +193,7 @@ class Plugin(BasePlugin):
WaitingDialog(window, msg, task, on_success, on_failure)
def on_receive(self, keyhash, message):
self.logger.info("signal arrived for", keyhash)
self.logger.info(f"signal arrived for {keyhash}")
for key, _hash, window in self.keys:
if _hash == keyhash:
break

Loading…
Cancel
Save