mirror of https://github.com/status-im/web3.js.git
Merge branch 'develop' into events_refactor
Conflicts: dist/web3-light.js.map dist/web3-light.min.js dist/web3.js.map dist/web3.min.js
This commit is contained in:
commit
d38f5a215a
|
@ -1975,12 +1975,6 @@ var compileSerpent = new Method({
|
|||
params: 1
|
||||
});
|
||||
|
||||
var flush = new Method({
|
||||
name: 'flush',
|
||||
call: 'eth_flush',
|
||||
params: 0
|
||||
});
|
||||
|
||||
var methods = [
|
||||
getBalance,
|
||||
getStorageAt,
|
||||
|
@ -1998,7 +1992,6 @@ var methods = [
|
|||
compileSolidity,
|
||||
compileLLL,
|
||||
compileSerpent,
|
||||
flush
|
||||
];
|
||||
|
||||
/// @returns an array of objects describing web3.eth api properties
|
||||
|
@ -2739,7 +2732,7 @@ var XMLHttpRequest = require('xmlhttprequest').XMLHttpRequest; // jshint ignore:
|
|||
var errors = require('./errors');
|
||||
|
||||
var HttpProvider = function (host) {
|
||||
this.host = host || 'http://localhost:8080';
|
||||
this.host = host || 'http://localhost:8545';
|
||||
};
|
||||
|
||||
HttpProvider.prototype.send = function (payload) {
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1975,12 +1975,6 @@ var compileSerpent = new Method({
|
|||
params: 1
|
||||
});
|
||||
|
||||
var flush = new Method({
|
||||
name: 'flush',
|
||||
call: 'eth_flush',
|
||||
params: 0
|
||||
});
|
||||
|
||||
var methods = [
|
||||
getBalance,
|
||||
getStorageAt,
|
||||
|
@ -1998,7 +1992,6 @@ var methods = [
|
|||
compileSolidity,
|
||||
compileLLL,
|
||||
compileSerpent,
|
||||
flush
|
||||
];
|
||||
|
||||
/// @returns an array of objects describing web3.eth api properties
|
||||
|
@ -2739,7 +2732,7 @@ var XMLHttpRequest = require('xmlhttprequest').XMLHttpRequest; // jshint ignore:
|
|||
var errors = require('./errors');
|
||||
|
||||
var HttpProvider = function (host) {
|
||||
this.host = host || 'http://localhost:8080';
|
||||
this.host = host || 'http://localhost:8545';
|
||||
};
|
||||
|
||||
HttpProvider.prototype.send = function (payload) {
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -192,12 +192,6 @@ var compileSerpent = new Method({
|
|||
params: 1
|
||||
});
|
||||
|
||||
var flush = new Method({
|
||||
name: 'flush',
|
||||
call: 'eth_flush',
|
||||
params: 0
|
||||
});
|
||||
|
||||
var methods = [
|
||||
getBalance,
|
||||
getStorageAt,
|
||||
|
@ -215,7 +209,6 @@ var methods = [
|
|||
compileSolidity,
|
||||
compileLLL,
|
||||
compileSerpent,
|
||||
flush
|
||||
];
|
||||
|
||||
/// @returns an array of objects describing web3.eth api properties
|
||||
|
|
|
@ -28,7 +28,7 @@ var XMLHttpRequest = require('xmlhttprequest').XMLHttpRequest; // jshint ignore:
|
|||
var errors = require('./errors');
|
||||
|
||||
var HttpProvider = function (host) {
|
||||
this.host = host || 'http://localhost:8080';
|
||||
this.host = host || 'http://localhost:8545';
|
||||
};
|
||||
|
||||
HttpProvider.prototype.send = function (payload) {
|
||||
|
|
Loading…
Reference in New Issue