Skip to content

Commit

Permalink
Deploy freshest version to staging
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDeeKay committed Jun 20, 2024
1 parent 83bbd93 commit aff3895
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions refs.json
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
},
"staging": {
"enterprise": {
"codeId": "2997"
"codeId": "3011"
},
"enterprise-factory": {
"codeId": "2650",
Expand All @@ -184,34 +184,34 @@
"codeId": "1318"
},
"enterprise-governance": {
"codeId": "2998"
"codeId": "3012"
},
"funds-distributor": {
"codeId": "3002"
"codeId": "3016"
},
"attestation": {
"codeId": "2996"
"codeId": "3010"
},
"denom-staking-membership": {
"codeId": "3004"
"codeId": "3018"
},
"enterprise-governance-controller": {
"codeId": "2999"
"codeId": "3013"
},
"enterprise-treasury": {
"codeId": "3000"
"codeId": "3014"
},
"enterprise-outposts": {
"codeId": "3001"
"codeId": "3015"
},
"token-staking-membership": {
"codeId": "3003"
"codeId": "3017"
},
"nft-staking-membership": {
"codeId": "3005"
"codeId": "3019"
},
"multisig-membership": {
"codeId": "3006"
"codeId": "3020"
},
"enterprise-facade-v1": {
"codeId": "2992",
Expand Down
2 changes: 1 addition & 1 deletion tests-cradle/src/proposals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const createProposal = async (ctx: ExecuteCtx, dao: DaoContracts, proposa

export const createGeneralProposal = async (ctx: ExecuteCtx, dao: DaoContracts, proposalAction: ProposalAction): Promise<number> => {
const govConfig = await queryGovConfig(ctx.lcd, dao);
if (govConfig.gov_config.minimum_deposit === undefined || govConfig.gov_config.minimum_deposit === null) {
if (govConfig.gov_config.minimum_deposit === undefined || govConfig.gov_config.minimum_deposit === null || govConfig.gov_config.minimum_deposit === '0') {
return await createGeneralProposalWithoutDeposit(ctx, dao, proposalAction);
} else {
const minimumDeposit = parseInt(govConfig.gov_config.minimum_deposit, 10);
Expand Down

0 comments on commit aff3895

Please sign in to comment.