mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-23 19:48:13 +00:00
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:
parent
1e89ef0437
commit
ddec6298dc
4
dist/ethereum-light.js
vendored
4
dist/ethereum-light.js
vendored
@ -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,
|
||||
|
||||
});
|
||||
|
2
dist/ethereum-light.js.map
vendored
2
dist/ethereum-light.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/ethereum-light.min.js
vendored
2
dist/ethereum-light.min.js
vendored
File diff suppressed because one or more lines are too long
4
dist/ethereum.js
vendored
4
dist/ethereum.js
vendored
@ -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,
|
||||
|
||||
});
|
||||
|
2
dist/ethereum.js.map
vendored
2
dist/ethereum.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/ethereum.min.js
vendored
2
dist/ethereum.min.js
vendored
File diff suppressed because one or more lines are too long
@ -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,
|
||||
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user