diff --git a/lib/services/address/index.js b/lib/services/address/index.js index 869443f5..0fe9830b 100644 --- a/lib/services/address/index.js +++ b/lib/services/address/index.js @@ -17,6 +17,9 @@ var AddressService = function(options) { this._db = this.node.services.db; this._tx = this.node.services.transaction; this._network = this.node.network; + if (this._network === 'livenet') { + this._network = 'main'; + } this._timestamp = this.node.services.timestamp; this._p2p = this.node.services.p2p; };