Browse Source

Precise fields for Block selection

stuff
xcps 7 years ago
parent
commit
a2c640b9f7
  1. 1
      routes/index.js
  2. 2
      routes/search.js

1
routes/index.js

@ -6,6 +6,7 @@ var router = express.Router();
router.get('/', async function(req, res, next) { router.get('/', async function(req, res, next) {
const blocks = await models.Block.findAll({ const blocks = await models.Block.findAll({
attributes: ['height', 'hash'],
order: [['height', 'DESC']], order: [['height', 'DESC']],
limit: 30, limit: 30,
}); });

2
routes/search.js

@ -16,6 +16,7 @@ router.post('/', async function(req, res, next) {
const blockIndex = parseInt(search); const blockIndex = parseInt(search);
if (isNaN(blockIndex) === false && blockIndex.toString() === search) { if (isNaN(blockIndex) === false && blockIndex.toString() === search) {
const block = await models.Block.findOne({ const block = await models.Block.findOne({
attributes: ['hash'],
where: { where: {
height: blockIndex, height: blockIndex,
}, },
@ -51,6 +52,7 @@ router.post('/', async function(req, res, next) {
// looking for block // looking for block
const block = await models.Block.findOne({ const block = await models.Block.findOne({
attributes: ['hash'],
where: { where: {
hash: search, hash: search,
}, },

Loading…
Cancel
Save