Skip to content

Commit

Permalink
fix: wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed Apr 12, 2024
1 parent c7ada7b commit b15448c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/contracts/deploy/30_upgrade_repo/31a_upgrade_repo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {upgradeCommon, skipUpgrade} from './_common';
import {commonUpgradeSteps, skipUpgrade} from './_common';
import {PLUGIN_REPO_PERMISSIONS} from '@aragon/osx-commons-sdk';
import {DeployFunction} from 'hardhat-deploy/types';
import {HardhatRuntimeEnvironment} from 'hardhat/types';
Expand All @@ -9,7 +9,7 @@ import {HardhatRuntimeEnvironment} from 'hardhat/types';
*/
const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
const {deployer, pluginRepo, latestPluginRepoImplementation} =
await upgradeCommon(hre);
await commonUpgradeSteps(hre);

// Check if deployer has the permission to upgrade the plugin repo
if (
Expand Down

0 comments on commit b15448c

Please sign in to comment.