From 8fb14bf7133447f0219bde21b8bad9276ce5bf7c Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 8 Apr 2022 09:59:22 -0400 Subject: [PATCH] remove command not available in lbcd --- lbry/wallet/orchstr8/node.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lbry/wallet/orchstr8/node.py b/lbry/wallet/orchstr8/node.py index 70a157b49..640a74cfb 100644 --- a/lbry/wallet/orchstr8/node.py +++ b/lbry/wallet/orchstr8/node.py @@ -679,11 +679,6 @@ class LBCWalletNode: def get_raw_transaction(self, txid): return self._cli_cmnd('getrawtransaction', txid, '1') - async def add_time_locked_address(self, height, address): - return json.loads( - await self._cli_cmnd('addtimelockedaddress', str(height), address) - ) - class HubProcess(asyncio.SubprocessProtocol): def __init__(self, ready, stopped):