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) => {
const { deploy } = deployments
const { deployer } = await getNamedAccounts()
const l2TokenFactory = getContractDefinition('OVM_L2StandardTokenFactory', true)
const l2TokenFactory = getContractDefinition(
'OVM_L2StandardTokenFactory',
true
)
await deploy('OVM_L2StandardTokenFactory', {
contract: l2TokenFactory,
args: [],
from: deployer,
log: true,
});
})
}
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