File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import fs from "node:fs/promises";
33import { runCommand } from "./subprocess" ;
44
55const DG_REPOSITORY_URL = "https://github.com/lidofinance/dual-governance.git" ;
6- const DG_REPOSITORY_BRANCH = "feature/scratch-deploy-support2 " ; // TODO: use release branch
6+ const DG_REPOSITORY_BRANCH = "feature/scratch-deploy-support " ; // TODO: use release branch
77const DG_INSTALL_DIR = `${ process . cwd ( ) } /dg` ;
88
99async function main ( ) {
Original file line number Diff line number Diff line change @@ -26,6 +26,6 @@ export INTEGRATION_WITH_CSM="off"
2626yarn test:integration:fork:local
2727
2828# If Dual Governance was deployed
29- if grep " dg:dualGovernance " $NETWORK_STATE_FILE -q; then
29+ if grep " dg:escrow_master_copy " $NETWORK_STATE_FILE -q; then
3030 yarn dg:regression-tests
3131fi
Original file line number Diff line number Diff line change @@ -24,6 +24,6 @@ yarn hardhat --network $NETWORK run --no-compile scripts/utils/mine.ts
2424yarn test:integration:fork:local
2525
2626# If Dual Governance was deployed
27- if grep " dg:dualGovernance " $NETWORK_STATE_FILE -q; then
27+ if grep " dg:escrow_master_copy " $NETWORK_STATE_FILE -q; then
2828 yarn dg:regression-tests
2929fi
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export async function mockDGAragonVoting(
5757 const voting = await loadContract < Voting > ( "Voting" , votingAddress ) ;
5858 const timelock = await loadContract < IEmergencyProtectedTimelock > (
5959 "IEmergencyProtectedTimelock" ,
60- state [ Sk . dgEmergencyProtectedTimelock ] . proxy . address , // TODO: del!
60+ state [ Sk . dgEmergencyProtectedTimelock ] . address ,
6161 ) ;
6262 const afterSubmitDelay = await timelock . getAfterSubmitDelay ( ) ;
6363 const afterScheduleDelay = await timelock . getAfterScheduleDelay ( ) ;
You can’t perform that action at this time.
0 commit comments