When creating the NDN, don't need to set host to null since this is now the default.
diff --git a/js/ndnProtocol/components/ndnProtocolService.js b/js/ndnProtocol/components/ndnProtocolService.js
index 474a1cc..f8ee53b 100644
--- a/js/ndnProtocol/components/ndnProtocolService.js
+++ b/js/ndnProtocol/components/ndnProtocolService.js
@@ -17,10 +17,8 @@
 Components.utils.import("chrome://modules/content/NdnProtocolInfo.jsm");

 

 function NdnProtocol() {

-    // TODO: Remove host: null when null is the default.

     this.ndn = new NDN({ getTransport: function() { return new XpcomTransport(); }, 

-                         host: null, verify: false });

-// DEBUG            host: "E.hub.ndn.ucla.edu", port: 9695, verify: false });

+                       verify: false });

 }

 

 NdnProtocol.prototype = {