diff --git a/lbry/extras/daemon/daemon.py b/lbry/extras/daemon/daemon.py index bb0acc6e2..a74f14c3e 100644 --- a/lbry/extras/daemon/daemon.py +++ b/lbry/extras/daemon/daemon.py @@ -2426,7 +2426,7 @@ class Daemon(metaclass=JSONRPCServerType): [--new_sdk_server=] Options: - --name= : (str) claim name (normalized_name) + --name= : (str) claim name (normalized) --text= : (str) full text search --claim_id= : (str) full or partial claim id --claim_ids= : (list) list of full claim ids diff --git a/lbry/wallet/orchstr8/node.py b/lbry/wallet/orchstr8/node.py index 6b63ecb01..d592f74f7 100644 --- a/lbry/wallet/orchstr8/node.py +++ b/lbry/wallet/orchstr8/node.py @@ -461,25 +461,15 @@ class BlockchainNode: class HubProcess(asyncio.SubprocessProtocol): - - IGNORE_OUTPUT = [ - b'keypool keep', - b'keypool reserve', - b'keypool return', - ] - def __init__(self): self.ready = asyncio.Event() self.stopped = asyncio.Event() self.log = log.getChild('hub') def pipe_data_received(self, fd, data): - if self.log and not any(ignore in data for ignore in self.IGNORE_OUTPUT): - if b'Error:' in data: - self.log.error(data.decode()) - else: - self.log.info(data.decode()) - if b'Error:' in data: + if self.log: + self.log.info(data.decode()) + if b'error' in data.lower(): self.ready.set() raise SystemError(data.decode()) if b'listening on' in data: