From 4bf873637e67cb046167f79c623eefdefafc5329 Mon Sep 17 00:00:00 2001 From: Mike <41407352+hunjixin@users.noreply.github.com> Date: Mon, 17 Jun 2024 12:09:45 +0800 Subject: [PATCH] fix: pow deploy typo (#162) Co-authored-by: hunjixin <16705420332lee@gmai.com> --- hardhat/deploy/007_deploy_pow.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hardhat/deploy/007_deploy_pow.ts b/hardhat/deploy/007_deploy_pow.ts index 7203e458..d085b9f3 100644 --- a/hardhat/deploy/007_deploy_pow.ts +++ b/hardhat/deploy/007_deploy_pow.ts @@ -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 { @@ -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