Browse Source

Merge commit 'aeb6f95299450dc7f80c9dab7ee6bf4385fc6937' into web3.js.6.0

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
654ab5791b
  1. 8
      libjsqrc/ethereumjs/dist/web3-light.js
  2. 4
      libjsqrc/ethereumjs/dist/web3-light.min.js
  3. 8
      libjsqrc/ethereumjs/dist/web3.js
  4. 4
      libjsqrc/ethereumjs/dist/web3.js.map
  5. 4
      libjsqrc/ethereumjs/dist/web3.min.js

8
libjsqrc/ethereumjs/dist/web3-light.js

@ -2037,6 +2037,13 @@ var getTransactionCount = new Method({
outputFormatter: utils.toDecimal
});
var sendRawTransaction = new Method({
name: 'sendRawTransaction',
call: 'eth_sendRawTransaction',
params: 1,
inputFormatter: []
});
var sendTransaction = new Method({
name: 'sendTransaction',
call: 'eth_sendTransaction',
@ -2103,6 +2110,7 @@ var methods = [
getTransactionCount,
call,
estimateGas,
sendRawTransaction,
sendTransaction,
compileSolidity,
compileLLL,

4
libjsqrc/ethereumjs/dist/web3-light.min.js

File diff suppressed because one or more lines are too long

8
libjsqrc/ethereumjs/dist/web3.js

@ -2037,6 +2037,13 @@ var getTransactionCount = new Method({
outputFormatter: utils.toDecimal
});
var sendRawTransaction = new Method({
name: 'sendRawTransaction',
call: 'eth_sendRawTransaction',
params: 1,
inputFormatter: []
});
var sendTransaction = new Method({
name: 'sendTransaction',
call: 'eth_sendTransaction',
@ -2103,6 +2110,7 @@ var methods = [
getTransactionCount,
call,
estimateGas,
sendRawTransaction,
sendTransaction,
compileSolidity,
compileLLL,

4
libjsqrc/ethereumjs/dist/web3.js.map

File diff suppressed because one or more lines are too long

4
libjsqrc/ethereumjs/dist/web3.min.js

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save