added min tor time, large performance improvement

This commit is contained in:
2022-07-23 15:46:48 -05:00
parent b7a7d54272
commit 3aa5931095
6 changed files with 60 additions and 48 deletions

View File

@@ -37,6 +37,8 @@ class Qbt:
self.loglevel = self.config["loglevel"]
self.tracker_protected_tag = self.config["protected_tag"]
self.tracker_non_protected_tag = self.config["non_protected_tag"]
self.minimum_age = self.config["minimum_age"]
self.age = self.config["age"]
# Calling log and notify functions
torlog(self)
tornotify(self)
@@ -46,6 +48,7 @@ class Qbt:
self.tracker_whitelist = load(f)
self.tracker_list = []
self.up_tor_counter = 0
self.preme_tor_counter = 0
self.torrent_hash_delete_list = []
if self.use_log:
self.tl.debug(self.tracker_whitelist)