commit 9897e41e68cd63a61d02267961b358c0d2444ad7
parent 21e907a4e3b7540b9f410ec5d28314432b25c5c2
Author: ThomasV <thomasv@electrum.org>
Date: Tue, 17 Jul 2018 14:23:40 +0200
remove unused method
Diffstat:
1 file changed, 0 insertions(+), 7 deletions(-)
diff --git 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)