diff --git a/CHANGELOG.md b/CHANGELOG.md index ad51a4efd..b46860bae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ at anytime. * Renamed `channel_list_mine` to `channel_list` * Changed `channel_list` to include channels where the certificate info has been imported but the claim is not in the wallet * Changed `file_list`, `file_delete`, `file_set_status`, and `file_reflect` to no longer return claim related information. + * Increased assumption for time it takes to announce single hash from 1 second to 5 seconds ### Added * Added `channel_import` and `channel_export` commands diff --git a/lbrynet/core/server/DHTHashAnnouncer.py b/lbrynet/core/server/DHTHashAnnouncer.py index ba7bede7d..8bef7b177 100644 --- a/lbrynet/core/server/DHTHashAnnouncer.py +++ b/lbrynet/core/server/DHTHashAnnouncer.py @@ -96,7 +96,7 @@ class DHTHashSupplier(object): MIN_HASH_REANNOUNCE_TIME = 60*60 # conservative assumption of the time it takes to announce # a single hash - SINGLE_HASH_ANNOUNCE_DURATION = 1 + SINGLE_HASH_ANNOUNCE_DURATION = 5 """Classes derived from this class give hashes to a hash announcer""" def __init__(self, announcer):