Skip to content

Commit 0b72bb7

Browse files
committed
fix: minor improvements
1 parent 4b6dc09 commit 0b72bb7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/dg-installation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import fs from "node:fs/promises";
33
import { runCommand } from "./subprocess";
44

55
const 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
77
const DG_INSTALL_DIR = `${process.cwd()}/dg`;
88

99
async function main() {

scripts/dao-local-deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ export INTEGRATION_WITH_CSM="off"
2626
yarn 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
3131
fi

scripts/dao-local-upgrade.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ yarn hardhat --network $NETWORK run --no-compile scripts/utils/mine.ts
2424
yarn 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
2929
fi

scripts/utils/upgrade.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)