From b3cd6da0c819d7423e43fdeb66803424e0fcacb2 Mon Sep 17 00:00:00 2001 From: Alex Yocom-Piatt Date: Wed, 24 Feb 2016 16:00:35 +0000 Subject: [PATCH] Add voters and freshstake fields to returned block list info --- app/controllers/blocks.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/controllers/blocks.js b/app/controllers/blocks.js index 24788120a..b148e08fd 100644 --- a/app/controllers/blocks.js +++ b/app/controllers/blocks.js @@ -141,7 +141,8 @@ exports.list = function(req, res) { hash: b.hash, time: b.ts || info.time, txlength: info.tx.length, - poolInfo: info.poolInfo + voters: info.voters, + freshstake: info.freshstake }); }); }, function(err, allblocks) {