From 3e6c8a045370adfef2ebd87cc2b546424e81eb73 Mon Sep 17 00:00:00 2001 From: Jonathan Warren Date: Fri, 22 Mar 2013 13:29:06 -0400 Subject: [PATCH] comment out line used for testing --- bitmessagemain.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bitmessagemain.py b/bitmessagemain.py index 8c552a08..9c7ac39b 100755 --- a/bitmessagemain.py +++ b/bitmessagemain.py @@ -48,7 +48,6 @@ import pickle import random import sqlite3 import threading #used for the locks, not for the threads -#import cStringIO from time import strftime, localtime import os import shutil #used for moving the messages.dat file @@ -78,7 +77,7 @@ class outgoingSynSender(QThread): time.sleep(1) resetTime = int(time.time()) #used below to clear out the alreadyAttemptedConnectionsList periodically so that we will retry connecting to hosts to which we have already tried to connect. while True: - time.sleep(999999)#I sometimes use this to prevent connections for testing. + #time.sleep(999999)#I sometimes use this to prevent connections for testing. if len(self.selfInitiatedConnectionList) < 8: #maximum number of outgoing connections = 8 random.seed() HOST, = random.sample(knownNodes[self.streamNumber], 1)