-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Remove unnecessary variable in whitelist.spec.ts #2154
Copy link
Copy link
Closed
Labels
A-integrationArea: integration testsArea: integration testsC-featureCategory: featuresCategory: features
Description
Very simple task. whitelist.spec.ts imports this variable:
| import { l2Provider } from './shared/utils' |
However, this same variable already exists on the OptimismEnv object created later:
| env = await OptimismEnv.new() |
Specifically:
env.l2Provider
We can get rid of the extra import by using env.l2Provider instead of l2Provider directly.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
A-integrationArea: integration testsArea: integration testsC-featureCategory: featuresCategory: features