Fix Coinbase in blocks and address. Remove console log from compiled js (removed from temp previousl)

This commit is contained in:
tenthirtyone 2017-08-16 12:49:37 -04:00
parent 515884bf63
commit e5b608809b
4 changed files with 23 additions and 24 deletions

View File

@ -123,7 +123,7 @@ module.exports = function transactionAPI(router) {
},
value: output.value / 1e8,
})),
output: tx.outputs,
isCoinBase: tx.inputs[0].prevout.hash === '0000000000000000000000000000000000000000000000000000000000000000',
})),
});
});
@ -172,7 +172,7 @@ module.exports = function transactionAPI(router) {
},
value: output.value / 1e8,
})),
output: tx.outputs,
isCoinBase: tx.inputs[0].prevout.hash === '0000000000000000000000000000000000000000000000000000000000000000',
})),
});
});

View File

@ -1123,7 +1123,6 @@ ScopedSocket.prototype.emit = function(event, data, callback) {
angular.module('insight.socket').factory('getSocket',
function($rootScope) {
console.log('init my socket');
var socket = io.connect(null, {
'reconnect': true,
'reconnection delay': 500,

File diff suppressed because one or more lines are too long