Skip to content

Commit

Permalink
closeProposalOnExecutionFailure
Browse files Browse the repository at this point in the history
  • Loading branch information
swelf19 committed Nov 12, 2024
1 parent 8f0993c commit 76de10a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/helpers/dao.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const deploySubdao = async (
},
},
},
close_proposal_on_execution_failure: false,
close_proposal_on_execution_failure: closeProposalOnExecutionFailure,
};
const proposalModuleInstantiateInfo = {
code_id: proposeCodeId,
Expand Down Expand Up @@ -164,7 +164,7 @@ export const setupSubDaoTimelockSet = async (
mockMainDao ? user : daoContracts.core.address,
daoContracts.proposals.overrule.pre_propose.address,
securityDaoAddr,
false,
closeProposalOnExecutionFailure,
);

const mainDaoMember = new DaoMember(
Expand Down
2 changes: 1 addition & 1 deletion src/testcases/run_in_band/chain_manager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ describe('Neutron / Chain Manager', () => {
neutronClient,
mainDao.contracts.core.address,
securityDaoAddr,
false,
true,
);

subdaoMember1 = new DaoMember(
Expand Down

0 comments on commit 76de10a

Please sign in to comment.