removed test

This commit is contained in:
tenthirtyone 2017-08-06 20:51:13 -04:00
parent d7a70d5456
commit f7bdf8d0a9

View File

@ -5,8 +5,6 @@ const config = require('../../config');
const node = new FullNode(config.bcoin);
let max = 0;
function start() {
node.open()
.then(() => {
@ -18,10 +16,6 @@ function start() {
node.chain.on('connect', (entry, block) => {
logger.log('debug',
'New Block & Ledger Entry');
if (max < entry.height) {
max = entry.height;
}
console.log(max);
BlockParser.parse(entry, block);
});