diff --git a/core/chains/evm/client/chain_client.go b/core/chains/evm/client/chain_client.go index fc856db3a8f..f02fc307f39 100644 --- a/core/chains/evm/client/chain_client.go +++ b/core/chains/evm/client/chain_client.go @@ -95,8 +95,8 @@ func (c *chainClient) BatchCallContext(ctx context.Context, b []rpc.BatchElem) e } func (c *chainClient) BatchCallContextAll(ctx context.Context, b []rpc.BatchElem) error { - return c.multiNode.DoAll(ctx, func(rpc RPCCLient) error { - rpc.BatchCallContext() + return c.multiNode.DoAll(ctx, func(ctx context.Context, rpc RPCCLient) error { + return rpc.BatchCallContext(ctx, b) }) }