Skip to content

Commit

Permalink
fix: wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed Feb 6, 2024
1 parent 34490d7 commit c5e5b39
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/contracts/deploy/3_upgrade_repo/30_upgrade_repo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
} from '@aragon/osx-commons-configs';
import {PLUGIN_REPO_PERMISSIONS} from '@aragon/osx-commons-sdk';
import {PluginRepo__factory} from '@aragon/osx-ethers';
import {BytesLike} from 'ethers';
import {DeployFunction} from 'hardhat-deploy/types';
import {HardhatRuntimeEnvironment} from 'hardhat/types';
import path from 'path';
Expand Down Expand Up @@ -52,7 +53,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
// Prepare optional initialization data

// TODO Add `initializeFrom` function to `PluginRepo`.
const initializeFromCalldata: unknown[] = [];
const initializeFromCalldata: BytesLike = [];
/*
const initData: unknown[] = [];
const initializeFromCalldata =
Expand Down

0 comments on commit c5e5b39

Please sign in to comment.