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