diff --git a/lib/node/fullnode.js b/lib/node/fullnode.js index 79adf78c..db29af2e 100644 --- a/lib/node/fullnode.js +++ b/lib/node/fullnode.js @@ -235,15 +235,14 @@ FullNode.prototype._open = co(function* open() { yield this.mempool.open(); yield this.miner.open(); yield this.pool.open(); - - if (this.http) - yield this.http.open(); - yield this.walletdb.open(); // Ensure primary wallet. yield this.openWallet(); + if (this.http) + yield this.http.open(); + this.logger.info('Node is loaded.'); });