Fix bug with var self = this;

This commit is contained in:
Braydon Fuller 2016-05-25 16:03:36 -04:00
parent 61f0c3063a
commit 72fe25aff9

View File

@ -12,7 +12,7 @@ function AddressController(node) {
}
AddressController.prototype.show = function(req, res) {
var self;
var self = this;
var options = {
noTxList: parseInt(req.query.noTxList)
};