From 9897e41e68cd63a61d02267961b358c0d2444ad7 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 17 Jul 2018 14:23:40 +0200 Subject: [PATCH] remove unused method --- electrum/lnwatcher.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/electrum/lnwatcher.py b/electrum/lnwatcher.py index b1efcdcba..d2642ac4b 100644 --- a/electrum/lnwatcher.py +++ b/electrum/lnwatcher.py @@ -84,13 +84,6 @@ class LNChanCloseHandler(PrintError): self.watched_addresses.add(addr) self.wallet.synchronizer.add(addr) - # TODO: de-duplicate? - def parse_response(self, response): - if response.get('error'): - self.print_error("response error:", response) - return None, None - return response['params'], response['result'] - def check_onchain_situation(self): funding_outpoint = self.chan.funding_outpoint ctx_candidate_txid = self.wallet.spent_outpoints[funding_outpoint.txid].get(funding_outpoint.output_index)