Skip to content

Commit

Permalink
fix: pow deploy typo (#162)
Browse files Browse the repository at this point in the history
Co-authored-by: hunjixin <[email protected]>
  • Loading branch information
2 people authored and noryev committed Jun 17, 2024
1 parent 30616a7 commit c1a0a2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hardhat/deploy/007_deploy_pow.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { HardhatRuntimeEnvironment } from 'hardhat/types'
import { DeployFunction } from 'hardhat-deploy/types'

const deployUsers: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
const deployPow: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
const { deployments, getNamedAccounts } = hre
const { deploy, execute } = deployments
const {
Expand All @@ -23,6 +23,6 @@ const deployUsers: DeployFunction = async function (hre: HardhatRuntimeEnvironme
return true
}

deployUsers.id = 'deployPow'
deployPow.id = 'deployPow'

export default deployUsers
export default deployPow

0 comments on commit c1a0a2a

Please sign in to comment.