getBestBlockHash is now added to API calls per the README

This commit is contained in:
lordhelmut 2014-07-31 14:27:15 -07:00
parent 496999644b
commit 37674ce77e

View File

@ -40,6 +40,9 @@ exports.show = function(req, res) {
case 'getLastBlockHash':
statusObject.getLastBlockHash(returnJsonp);
break;
case 'getBestBlockHash':
statusObject.getBestBlockHash(returnJsonp);
break;
default:
res.status(400).send('Bad Request');
}