fix /addr/<1xxx> translation

This commit is contained in:
Matias Alejo Garcia 2017-11-13 01:21:02 -03:00
parent ef451f8342
commit 136755fcda

View File

@ -38,6 +38,9 @@ AddressController.prototype.show = function(req, res) {
this._address.getAddressSummary(req.addr, options, function(err, data) {
if (data.addrStr)
data.addrStr = self.common.translateOutputAddress(data.addrStr);
if(err) {
return self.common.handleErrors(err, res);
}