Skip to content

Commit e4dc3e8

Browse files
committed
chore: cleanup some redundant comments
1 parent 850a5e0 commit e4dc3e8

File tree

4 files changed

+0
-8
lines changed

4 files changed

+0
-8
lines changed

lib/protocol/networks.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { log } from "lib";
66

77
import { ProtocolNetworkItems } from "./types";
88

9-
// If we are running in Hardhat without fork, we need to deploy the contracts from scratch deploy first to run integration tests
109
export function isNonForkingHardhatNetwork() {
1110
const networkName = hre.network.name;
1211
if (networkName === "hardhat") {

lib/state-file.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ export async function resetStateFile(networkName: string = hardhatNetwork.name):
191191
}
192192
}
193193

194-
// If network name is undefined current hardhat network will be used
195194
export function persistNetworkState(state: DeploymentState, networkName: string = hardhatNetwork.name): void {
196195
const fileName = _getFileName(networkName, NETWORK_STATE_FILE_BASENAME, NETWORK_STATE_FILE_DIR);
197196
const stateSorted = _sortKeysAlphabetically(state);

scripts/dao-deploy.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
set -e +u
33
set -o pipefail
44

5-
# TODO: Do we still need to set these variable?
6-
# ARAGON_APPS_REPO_REF=import-shared-minime
7-
85
# Check for required environment variables
96
if [[ -z "${DEPLOYER}" ]]; then
107
echo "Error: Environment variable DEPLOYER must be set"

scripts/dao-upgrade.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
set -e +u
33
set -o pipefail
44

5-
# TODO: Do we still need to set these variable?
6-
# ARAGON_APPS_REPO_REF=import-shared-minime
7-
85
# Check for required environment variables
96
if [[ -z "${DEPLOYER}" ]]; then
107
echo "Error: Environment variable DEPLOYER must be set"

0 commit comments

Comments
 (0)