mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-21 15:29:27 +00:00
retabed files
This commit is contained in:
parent
dea68f073e
commit
84b36a7193
4 changed files with 507 additions and 505 deletions
|
|
@ -25,7 +25,6 @@ if(process.env.NODE_ENV !== "build") {
|
||||||
var XMLHttpRequest = require('xmlhttprequest').XMLHttpRequest; // jshint ignore:line
|
var XMLHttpRequest = require('xmlhttprequest').XMLHttpRequest; // jshint ignore:line
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
var HttpRpcProvider = function (host) {
|
var HttpRpcProvider = function (host) {
|
||||||
this.handlers = [];
|
this.handlers = [];
|
||||||
this.host = host;
|
this.host = host;
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@
|
||||||
*/
|
*/
|
||||||
/** @file qt.js
|
/** @file qt.js
|
||||||
* @authors:
|
* @authors:
|
||||||
|
* Jeffrey Wilcke <jeff@ethdev.com>
|
||||||
* Marek Kotewicz <marek@ethdev.com>
|
* Marek Kotewicz <marek@ethdev.com>
|
||||||
* @date 2014
|
* @date 2014
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@
|
||||||
*/
|
*/
|
||||||
/** @file websocket.js
|
/** @file websocket.js
|
||||||
* @authors:
|
* @authors:
|
||||||
|
* Jeffrey Wilcke <jeff@ethdev.com>
|
||||||
* Marek Kotewicz <marek@ethdev.com>
|
* Marek Kotewicz <marek@ethdev.com>
|
||||||
* Marian Oancea <marian@ethdev.com>
|
* Marian Oancea <marian@ethdev.com>
|
||||||
* @date 2014
|
* @date 2014
|
||||||
|
|
@ -50,6 +51,7 @@ if(process.env.NODE_ENV !== "build") {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
WebSocketProvider.prototype.send = function(payload) {
|
WebSocketProvider.prototype.send = function(payload) {
|
||||||
if(this.ready) {
|
if(this.ready) {
|
||||||
var data = JSON.stringify(payload);
|
var data = JSON.stringify(payload);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue