From a4dd13de152c87ad2ab66140f758c5ab7a6f9f60 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Wed, 12 Feb 2014 12:39:30 -0300 Subject: [PATCH] smart by default --- util/sync.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/util/sync.js b/util/sync.js index 0906092e..99ddb85c 100755 --- a/util/sync.js +++ b/util/sync.js @@ -13,11 +13,11 @@ var async = require('async'); program .version(SYNC_VERSION) .option('-N --network [livenet]', 'Set bitcoin network [testnet]', 'testnet') - .option('-S --smart', 'genesis stored? uptoexisting = 1', 1) .option('-D --destroy', 'Remove current DB (and start from there)', 0) .option('-R --reverse', 'Sync backwards', 0) .option('-U --uptoexisting', 'Sync only until an existing block is found', 0) .option('-F --fromfiles', 'Sync using bitcoind .dat block files (faster)', 0) + .option('-S --smart', 'genesis stored? uptoexisting = 1, fromFiles=1 [default]', true) .option('-v --verbose', 'Verbose 0/1', 0) .parse(process.argv); @@ -34,7 +34,9 @@ async.series([ }, function(cb) { - if (program.smart) { + if (typeof program.smart === 'undefined' || parseInt(program.smart) ) { + +console.log('[sync.js.38]'); //TODO historicSync.smartImport({ destroy: program.destroy, },cb);