Include debug flag when building test build.

This commit is contained in:
Braydon Fuller 2015-07-21 11:35:02 -04:00
parent 66af5935b7
commit e3d041b594
2 changed files with 1 additions and 16 deletions

View File

@ -1,2 +1,2 @@
./configure --enable-tests=no --enable-daemonlib --with-gui=no --without-qt --without-miniupnpc --prefix=
./configure --enable_debug --enable-tests=no --enable-daemonlib --with-gui=no --without-qt --without-miniupnpc --prefix=

View File

@ -1,15 +0,0 @@
'use strict';
process.title = 'bitcoind.js';
var daemon = require('../').daemon({
directory: process.env.BITCOINDJS_DIR || '~/.bitcoin'
});
daemon.on('error', function(err) {
daemon.log('error="%s"', err.message);
});
daemon.on('open', function(status) {
daemon.log('status="%s"', status);
});