Commit dfa256d8 authored by smartcontracts's avatar smartcontracts Committed by GitHub

Merge pull request #1213 from ethereum-optimism/sc/fix-lint-deploy-l2

fix: lint deploy-l2 folder in contracts
parents 381f7297 1f1cc5cf
...@@ -9,14 +9,17 @@ const deployFn: DeployFunction = async (hre: any) => { ...@@ -9,14 +9,17 @@ const deployFn: DeployFunction = async (hre: any) => {
const { deploy } = deployments const { deploy } = deployments
const { deployer } = await getNamedAccounts() const { deployer } = await getNamedAccounts()
const l2TokenFactory = getContractDefinition('OVM_L2StandardTokenFactory', true) const l2TokenFactory = getContractDefinition(
'OVM_L2StandardTokenFactory',
true
)
await deploy('OVM_L2StandardTokenFactory', { await deploy('OVM_L2StandardTokenFactory', {
contract: l2TokenFactory, contract: l2TokenFactory,
args: [], args: [],
from: deployer, from: deployer,
log: true, log: true,
}); })
} }
deployFn.tags = ['OVM_L2StandardTokenFactory'] deployFn.tags = ['OVM_L2StandardTokenFactory']
......
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