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 <16705420332lee@gmai.com>
  • Loading branch information
hunjixin and hunjixin authored Jun 17, 2024
1 parent a08786c commit 4bf8736
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 4bf8736

Please sign in to comment.