We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08d912c commit d80a8d7Copy full SHA for d80a8d7
packages/network-controller/tests/provider-api-tests/helpers.ts
@@ -456,7 +456,8 @@ export async function withNetworkClient(
456
457
const { provider, blockTracker } = clientUnderTest;
458
459
- const ethQuery = new EthQuery(provider as any);
+ // @ts-expect-error TODO: Provider type alignment
460
+ const ethQuery = new EthQuery(provider);
461
const curriedMakeRpcCall = (request: Request) =>
462
makeRpcCall(ethQuery, request);
463
const makeRpcCallsInSeries = async (requests: Request[]) => {
0 commit comments