diff --git a/app/controllers/addresses.js b/app/controllers/addresses.js index 9e6c55c..cd8c05f 100644 --- a/app/controllers/addresses.js +++ b/app/controllers/addresses.js @@ -125,10 +125,10 @@ exports.multitxs = function(req, res, next) { if (paginated) { transactions = { - nbItems: nbTxs, + totalItems: nbTxs, from: +from, to: +to, - data: transactions, + items: transactions, }; } return cb(null, transactions);