diff --git a/http.js b/httprpc.js
similarity index 81%
rename from http.js
rename to httprpc.js
index 768d7c1ffd..50674ec948 100644
--- a/http.js
+++ b/httprpc.js
@@ -1,5 +1,5 @@
(function () {
- var HttpProvider = function (host) {
+ var HttpRpcProvider = function (host) {
this.handlers = [];
this.host = host;
};
@@ -22,7 +22,7 @@
};
};
- HttpProvider.prototype.sendRequest = function (payload, cb) {
+ HttpRpcProvider.prototype.sendRequest = function (payload, cb) {
var data = formatJsonRpcObject(payload);
var request = new XMLHttpRequest();
@@ -35,7 +35,7 @@
}
};
- HttpProvider.prototype.send = function (payload) {
+ HttpRpcProvider.prototype.send = function (payload) {
var self = this;
this.sendRequest(payload, function (request) {
self.handlers.forEach(function (handler) {
@@ -44,7 +44,7 @@
});
};
- HttpProvider.prototype.poll = function (payload, id) {
+ HttpRpcProvider.prototype.poll = function (payload, id) {
var self = this;
this.sendRequest(payload, function (request) {
var parsed = JSON.parse(request.responseText);
@@ -57,13 +57,14 @@
});
};
- Object.defineProperty(HttpProvider.prototype, "onmessage", {
+ Object.defineProperty(HttpRpcProvider.prototype, "onmessage", {
set: function (handler) {
this.handlers.push(handler);
}
});
if (typeof(web3) !== "undefined" && web3.providers !== undefined) {
- web3.providers.HttpProvider = HttpProvider;
+ web3.providers.HttpRpcProvider = HttpRpcProvider;
}
})();
+
diff --git a/index.html b/index.html
index 70f788d0de..2b3f50a141 100644
--- a/index.html
+++ b/index.html
@@ -5,7 +5,7 @@
-
+