1
0

uncomment breach_remedy in watchtower

This commit is contained in:
ThomasV
2019-09-09 18:49:14 +02:00
parent ddcd77ab36
commit e5502a58ba
2 changed files with 3 additions and 2 deletions

View File

@@ -308,7 +308,7 @@ class Network(Logger):
self.channel_db = channel_db.ChannelDB(self)
self.path_finder = lnrouter.LNPathFinder(self.channel_db)
self.lngossip = lnworker.LNGossip(self)
self.local_watchtower = lnwatcher.WatchTower(self) if self.config.get('local_watchtower', True) else None
self.local_watchtower = lnwatcher.WatchTower(self) if self.config.get('local_watchtower', False) else None
else:
self.channel_db = None # type: Optional[ChannelDB]
self.lngossip = None