fixed getUncle parameter count

Conflicts:
	dist/ethereum-light.js.map
	dist/ethereum-light.min.js
	dist/ethereum.js.map
	dist/ethereum.min.js
This commit is contained in:
Fabian Vogelsteller 2015-04-02 17:25:27 +02:00 committed by Marek Kotewicz
parent 1e89ef0437
commit ddec6298dc
7 changed files with 10 additions and 10 deletions

View File

@ -1671,8 +1671,8 @@ var getBlock = new Method({
var getUncle = new Method({
name: 'getUncle',
call: uncleCall,
params: 3,
inputFormatter: [utils.toHex, utils.toHex, function (val) { return !!val; }],
params: 2,
inputFormatter: [utils.toHex, utils.toHex],
outputFormatter: formatters.outputBlockFormatter,
});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4
dist/ethereum.js vendored
View File

@ -1671,8 +1671,8 @@ var getBlock = new Method({
var getUncle = new Method({
name: 'getUncle',
call: uncleCall,
params: 3,
inputFormatter: [utils.toHex, utils.toHex, function (val) { return !!val; }],
params: 2,
inputFormatter: [utils.toHex, utils.toHex],
outputFormatter: formatters.outputBlockFormatter,
});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -109,8 +109,8 @@ var getBlock = new Method({
var getUncle = new Method({
name: 'getUncle',
call: uncleCall,
params: 3,
inputFormatter: [utils.toHex, utils.toHex, function (val) { return !!val; }],
params: 2,
inputFormatter: [utils.toHex, utils.toHex],
outputFormatter: formatters.outputBlockFormatter,
});