From 4dd479cf59a82066faedd8c0f0f816419ab31746 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 15 Feb 2016 15:58:08 +0100 Subject: [PATCH] server_is_lagging: return True if no height --- lib/network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/network.py b/lib/network.py index 8c6bcfae..0dcaf58d 100644 --- a/lib/network.py +++ b/lib/network.py @@ -245,7 +245,7 @@ class Network(util.DaemonThread): sh = self.get_server_height() if not sh: self.print_error('no height for main interface') - return False + return True lh = self.get_local_height() result = (lh - sh) > 1 if result: