From 4af0372ca83b522e43ddd2b7a8532a3cc30d6189 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 5 May 2016 17:47:29 -0700 Subject: [PATCH] fix timedata. --- lib/bcoin/timedata.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/bcoin/timedata.js b/lib/bcoin/timedata.js index 785bcf33..166808cd 100644 --- a/lib/bcoin/timedata.js +++ b/lib/bcoin/timedata.js @@ -82,10 +82,10 @@ TimeData.prototype.add = function add(host, time) { match = true; break; } - if (!match) { - this._checked = true; - bcoin.debug('Please make sure your system clock is correct!'); - } + } + if (!match) { + this._checked = true; + bcoin.debug('Please make sure your system clock is correct!'); } } }