Commit 1f1cc5cf authored by Kelvin Fichter's avatar Kelvin Fichter

fix: lint deploy-l2 folder in contracts

parent 381f7297
...@@ -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