From 71ebd84c00fa43085cb84b22a6bd6546024cc76a Mon Sep 17 00:00:00 2001 From: Chris Arnesen Date: Sun, 8 Mar 2015 19:19:23 -0700 Subject: [PATCH] Use 8080 as default port as in config --- api/lib/http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/lib/http.js b/api/lib/http.js index 50c66a4e..686acdb6 100644 --- a/api/lib/http.js +++ b/api/lib/http.js @@ -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(); }