Unverified Commit 1325fef1 authored by Sina Mahmoodi's avatar Sina Mahmoodi Committed by GitHub

internal/web3ext: fix eth_call stateOverrides in console (#26265)

web3.js's eth_call which we were defaulting to doesn't have the stateOverrides parameter, so this param wasn't working in the console.
parent 53d1ae09
......@@ -600,6 +600,11 @@ web3._extend({
call: 'eth_getLogs',
params: 1,
}),
new web3._extend.Method({
name: 'call',
call: 'eth_call',
params: 3,
}),
],
properties: [
new web3._extend.Property({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment