Use 8080 as default port as in config

This commit is contained in:
Chris Arnesen 2015-03-08 19:19:23 -07:00
parent c018d5696d
commit 71ebd84c00

View File

@ -18,7 +18,7 @@ function BitcoreHTTP(node, opts) {
$.checkArgument(node);
opts = opts || {};
this.node = node;
this.port = opts.port || 8000;
this.port = opts.port || 8080;
this.logging = opts.logging || false;
this.setupExpress();
}