1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

remove badIntros from lokinetmon as rpc no longer has them in it

This commit is contained in:
Jeff Becker 2021-06-16 14:10:21 -04:00
parent 4b11858bb0
commit ae36fd42bb
No known key found for this signature in database
GPG key ID: F357B3B42F6F9B05

View file

@ -489,12 +489,8 @@ class Monitor:
for intro in context['currentRemoteIntroset']['intros'] or []:
y_pos = self._display_intro(y_pos, intro, "introset intro", paths)
y_pos += 1
for intro in context['badIntros'] or []:
y_pos = self._display_intro(y_pos, intro, "bad intro", paths)
y_pos += 1
return y_pos
def display_data(self):
""" draw main window """
if self.data is not None: