network: increase MOST_RELAXED default timeout to 10 minutes

related: https://github.com/spesmilo/electrum/pull/6741
This commit is contained in:
ln2max 2020-11-17 11:20:10 +00:00 committed by SomberNight
parent 3c89236128
commit 42366ba57d
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9

View File

@ -80,7 +80,8 @@ class NetworkTimeout:
class Generic:
NORMAL = 30
RELAXED = 45
MOST_RELAXED = 180
MOST_RELAXED = 600
class Urgent(Generic):
NORMAL = 10
RELAXED = 20