Skip to content

Commit

Permalink
fix(cli): deploy failing to find user modules (#1703)
Browse files Browse the repository at this point in the history
  • Loading branch information
codynhat authored Oct 6, 2023
1 parent 9ff4f45 commit e3d2aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/utils/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export async function deploy(

// Filters any default modules from config
const userModules = getUserModules(defaultModuleContracts, mudConfig.modules);
const userModuleContracts = Object.keys(userModules).map((name) => {
const userModuleContracts = userModules.map(({ name }) => {
const { abi, bytecode } = getContractData(name, forgeOutDirectory);
return {
name,
Expand Down

0 comments on commit e3d2aef

Please sign in to comment.