Skip to content

Commit 3548b65

Browse files
committed
Linting
1 parent fc25c49 commit 3548b65

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

deploy/60_validate_upgrade_token_staking.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
2727
TokenStaking,
2828
{
2929
constructorArgs: tokenStakingConstructorArgs,
30-
}
30+
},
3131
)
3232

33-
log(`Current TokenStaking implementation is compatible with existing deployment at ${TokenStakingDeployment.address}`)
33+
log(
34+
`Current TokenStaking implementation is compatible with existing deployment at ${TokenStakingDeployment.address}`,
35+
)
3436
}
3537
}
3638

deploy/61_prepare_upgrade_token_staking.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
2727
TokenStaking,
2828
{
2929
constructorArgs: tokenStakingConstructorArgs,
30-
kind: 'transparent',
31-
}
30+
kind: "transparent",
31+
},
3232
)
3333

3434
log(`Deployed new TokenStaking implementation contract at ${implAddress}`)
@@ -50,15 +50,15 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
5050
if (err) {
5151
console.log(err)
5252
}
53-
}
53+
},
5454
)
5555

5656
// initialize implementation
5757
const { deployer } = await getNamedAccounts()
5858
await execute(
5959
"TokenStaking",
6060
{ from: deployer, to: implAddress },
61-
"initialize"
61+
"initialize",
6262
)
6363
}
6464
}

0 commit comments

Comments
 (0)