From 18aff3de0cac61c9476da294b4e2455a176d59d9 Mon Sep 17 00:00:00 2001 From: Chris Kleeschulte Date: Fri, 4 Sep 2015 16:59:04 -0400 Subject: [PATCH] Fixed the warning message to the user on a reindex. --- lib/services/bitcoind.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/services/bitcoind.js b/lib/services/bitcoind.js index 1880b285..9585f69d 100644 --- a/lib/services/bitcoind.js +++ b/lib/services/bitcoind.js @@ -74,8 +74,9 @@ Bitcoin.prototype._loadConfiguration = function() { if (this.configuration.reindex && this.configuration.reindex === 1) { log.warn('Reindex option is currently enabled. This means that bitcoind is undergoing a reindex. ' + - 'Once the reindex is complete, the rest of bitcore-node services will start. ' + - 'WARNING!!! Be sure to remove \'reindex=1\' from your bitcoin.conf -BEFORE- restarting bitcore-node.'); + 'The reindex flag will start the index from beginning every time the node is started, so it ' + + 'should be removed after the reindex has been initiated. Once the reindex is complete, the rest ' + + 'of bitcore-node services will start.'); this._reindex = true; }