Merge branch 'master' into fix/node-ui-fixes

This commit is contained in:
Mario Colque 2014-01-23 17:33:46 -03:00
commit 8ebd686e33
3 changed files with 15 additions and 5 deletions

View File

@ -54,6 +54,16 @@ var getBlock = function(blockhash, cb) {
console.log(err);
return cb(err);
}
// TODO
if (!block.info) {
console.log('[blocks.js.60]: could not get %s from RPC. Orphan? Error?', blockhash); //TODO
// Probably orphan
block.info = {
hash: blockhash,
isOrphan: 1,
};
}
return cb(err, block.info);
});
};
@ -100,11 +110,11 @@ exports.list = function(req, res) {
if (err) {
res.status(500).send(err);
} else {
var blockshash = [];
var blockshashList = [];
for(var i=0;i<blocks.length;i++) {
blockshash.push(blocks[i].hash);
blockshashList.push(blocks[i].hash);
}
async.mapSeries(blockshash, getBlock, function(err, allblocks) {
async.mapSeries(blockshashList, getBlock, function(err, allblocks) {
res.jsonp({
blocks: allblocks,
length: allblocks.length,

View File

@ -1,7 +1,7 @@
doctype html
html(lang='en', xmlns='http://www.w3.org/1999/xhtml')
include ../includes/head
body
body(data-ng-app='insight')
#wrap
include ../includes/navbar
block content

View File

@ -1,4 +1,4 @@
<div class="alert alert-danger" ng:show="flashMessage">
<div class="alert alert-danger" data-ng-show="flashMessage">
{{flashMessage}}
</div>
<section data-ng-controller="IndexController" data-ng-init="index()">