From 65f90270e67d7a66271fec3412e5c17b912ec74c Mon Sep 17 00:00:00 2001 From: bill bittner Date: Thu, 28 Jun 2018 10:44:20 -0700 Subject: [PATCH] removed blocked list refresh from startup flow for testing --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 32d74ef1..d9358f37 100644 --- a/index.js +++ b/index.js @@ -121,8 +121,8 @@ function Server () { logger.info(`Updating tor node list`); Promise.all([ getWalletBalance(), - updateBlockedList(), - updateTorList(), + [], + db.Tor.refreshTable(), ]) }) .then(([walletBalance, updatedBlockedList, updatedTorList]) => {