Skip to content

Commit 6479f9e

Browse files
committed
feat: verify proposal
1 parent 4a41b13 commit 6479f9e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

block.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
15731500
1+
15746591

protocol-configuration/proposalsConfig.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ export const ProposalsConfig: TemplatedProposalsConfigMap = {
77
deploy: false, // deploy flag for whether to run deploy action during e2e tests or use mainnet state
88
totalValue: 0, // amount of ETH to send to DAO execution
99
proposal: verify_rari_proposal, // full proposal file, imported from '@proposals/description/fip_xx.ts'
10-
proposalId: '',
10+
proposalId: '53574501655284602449700656986259209419304960746947256621269957621106418075192',
1111
affectedContractSignoff: [],
1212
deprecatedContractSignoff: [],
13-
category: ProposalCategory.DEBUG
13+
category: ProposalCategory.DAO
1414
}
1515
};
1616

scripts/utils/checkProposal.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ async function checkProposal(proposalName: string, doSetup?: string) {
5454
);
5555
}
5656

57-
const { feiDAO } = contracts;
57+
const { tribeRariDAO } = contracts;
5858

5959
const proposalNo = proposals[proposalName].proposalId;
6060

61-
await execProposal(voterAddress, feiDAO.address, proposals[proposalName].totalValue.toString(), proposalNo);
61+
await execProposal(voterAddress, tribeRariDAO.address, proposals[proposalName].totalValue.toString(), proposalNo);
6262

6363
console.log('Teardown');
6464
await proposalFuncs.teardown(

0 commit comments

Comments
 (0)