Fixed the warning message to the user on a reindex.

This commit is contained in:
Chris Kleeschulte 2015-09-04 16:59:04 -04:00
parent 730dd37318
commit 18aff3de0c
1 changed files with 3 additions and 2 deletions

View File

@ -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;
}