From e3d041b594436d1dbfcd8c94ee64742f576b688b Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Tue, 21 Jul 2015 11:35:02 -0400 Subject: [PATCH] Include debug flag when building test build. --- bin/config_options_test.sh | 2 +- example/daemon.js | 15 --------------- 2 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 example/daemon.js diff --git a/bin/config_options_test.sh b/bin/config_options_test.sh index 8ba4a8ae..2653ee1e 100644 --- a/bin/config_options_test.sh +++ b/bin/config_options_test.sh @@ -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= diff --git a/example/daemon.js b/example/daemon.js deleted file mode 100644 index d5dcf871..00000000 --- a/example/daemon.js +++ /dev/null @@ -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); -});