mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-16 01:40:44 +00:00
* internal/web3ext: fix eth_call stateOverrides in console #26265 * internal/web3ext: fix eth.call regression in console #26266 * internal/web3ext: fix eth_call in console 2 #26268
This commit is contained in:
parent
2539836ede
commit
3fecfcaa76
1 changed files with 6 additions and 0 deletions
|
|
@ -566,6 +566,12 @@ web3._extend({
|
||||||
call: 'eth_getLogs',
|
call: 'eth_getLogs',
|
||||||
params: 1,
|
params: 1,
|
||||||
}),
|
}),
|
||||||
|
new web3._extend.Method({
|
||||||
|
name: 'call',
|
||||||
|
call: 'eth_call',
|
||||||
|
params: 3,
|
||||||
|
inputFormatter: [web3._extend.formatters.inputCallFormatter, web3._extend.formatters.inputDefaultBlockNumberFormatter, null],
|
||||||
|
}),
|
||||||
new web3._extend.Method({
|
new web3._extend.Method({
|
||||||
name: 'getBlockReceipts',
|
name: 'getBlockReceipts',
|
||||||
call: 'eth_getBlockReceipts',
|
call: 'eth_getBlockReceipts',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue