correct timer thread amounts

This commit is contained in:
Kevin Froman 2020-03-20 03:45:25 -05:00
parent fe3b6c01c4
commit b5ac1ed7d8
1 changed files with 2 additions and 2 deletions

View File

@ -152,11 +152,11 @@ class OnionrCommunicatorDaemon:
# Timer to reset the longest offline peer
# so contact can be attempted again
OnionrCommunicatorTimers(
self, onlinepeers.clear_offline_peer, 58, my_args=[self])
self, onlinepeers.clear_offline_peer, 58, my_args=[self], max_threads=1)
# Timer to cleanup old blocks
blockCleanupTimer = OnionrCommunicatorTimers(
self, housekeeping.clean_old_blocks, 20, my_args=[self])
self, housekeeping.clean_old_blocks, 20, my_args=[self], max_threads=1)
# Timer to discover new peers
OnionrCommunicatorTimers(