mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 23:24:27 +01:00
pyln-client/LightningRpc: fixed logger in super()
* Changelog-None
This commit is contained in:
committed by
ZmnSCPxj, ZmnSCPxj jxPCSmnZ
parent
4be1868b8a
commit
205f9d814d
@@ -357,7 +357,7 @@ class LightningRpc(UnixDomainSocketRpc):
|
|||||||
return obj
|
return obj
|
||||||
|
|
||||||
def __init__(self, socket_path, executor=None, logger=logging):
|
def __init__(self, socket_path, executor=None, logger=logging):
|
||||||
super().__init__(socket_path, executor, logging, self.LightningJSONEncoder, self.LightningJSONDecoder())
|
super().__init__(socket_path, executor, logger, self.LightningJSONEncoder, self.LightningJSONDecoder())
|
||||||
|
|
||||||
def autocleaninvoice(self, cycle_seconds=None, expired_by=None):
|
def autocleaninvoice(self, cycle_seconds=None, expired_by=None):
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user