Merge pull request #331 from gasteve/master

remove debug output from bitcore cli utility
This commit is contained in:
Braydon Fuller 2015-10-20 12:06:03 -04:00
commit 9b0ea9873d

View File

@ -24,8 +24,6 @@ function main() {
.description('Create a new node')
.option('-d, --datadir <dir>', 'Specify the bitcoin database directory')
.action(function(dirname, cmd){
console.log('dirname', dirname);
console.log('cmd', cmd);
if (cmd.datadir) {
cmd.datadir = path.resolve(process.cwd(), cmd.datadir);
}