From 3f56375ad70c1bfe495d7ee9172feb65b880e1cf Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sat, 16 Apr 2016 20:59:32 -0700 Subject: [PATCH] rename some files. --- lib/bcoin/http/{http.js => base.js} | 0 lib/bcoin/http/index.js | 2 +- test/{node-test.js => mempool-test.js} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename lib/bcoin/http/{http.js => base.js} (100%) rename test/{node-test.js => mempool-test.js} (100%) diff --git a/lib/bcoin/http/http.js b/lib/bcoin/http/base.js similarity index 100% rename from lib/bcoin/http/http.js rename to lib/bcoin/http/base.js diff --git a/lib/bcoin/http/index.js b/lib/bcoin/http/index.js index de124ef9..d033a65c 100644 --- a/lib/bcoin/http/index.js +++ b/lib/bcoin/http/index.js @@ -13,7 +13,7 @@ module.exports = function(bcoin) { bcoin.http.provider = require('./provider')(bcoin); if (!bcoin.isBrowser) { - bcoin.http.base = require('./ht' + 'tp'); + bcoin.http.base = require('./ba' + 'se'); bcoin.http.server = require('./ser' + 'ver')(bcoin); } diff --git a/test/node-test.js b/test/mempool-test.js similarity index 100% rename from test/node-test.js rename to test/mempool-test.js