servers not updating peers list properly; let us see if this fixes it

This commit is contained in:
ThomasV 2011-12-04 16:18:37 +03:00
parent cd89cb760e
commit 8b8fdd4808
1 changed files with 1 additions and 1 deletions

View File

@ -504,7 +504,7 @@ def irc_thread():
name = line[k+6]
host = line[k+9]
peer_list[name] = (ip,host)
elif time.time() - t > 5*60:
if time.time() - t > 5*60:
s.send('NAMES #electrum\n')
t = time.time()
peer_list = {}