Merge pull request #96 from cmgustavo/bug/01-json

Normalize address information (json). Just show listed fields
This commit is contained in:
Matias Alejo Garcia 2014-05-27 18:04:46 -03:00
commit 0b8619dae3
2 changed files with 19 additions and 1 deletions

View File

@ -51,7 +51,7 @@ exports.show = function(req, res, next) {
if (err) {
return common.handleErrors(err, res);
} else {
return res.jsonp(a);
return res.jsonp(a.getObj());
}
}, req.query.noTxList);
}

View File

@ -74,6 +74,24 @@ function Address(addrStr) {
}
Address.prototype.getObj = function() {
// Normalize json address
return {
'addrStr': this.addrStr,
'balance': this.balance,
'balanceSat': this.balanceSat,
'totalReceived': this.totalReceived,
'totalReceivedSat': this.totalReceivedSat,
'totalSent': this.totalSent,
'totalSentSat': this.totalSentSat,
'unconfirmedBalance': this.unconfirmedBalance,
'unconfirmedBalanceSat': this.unconfirmedBalanceSat,
'unconfirmedTxApperances': this.unconfirmedTxApperances,
'txApperances': this.txApperances,
'transactions': this.transactions
};
};
Address.prototype.getUtxo = function(next) {
var self = this;
var tDb = TransactionDb;