Skip to content

Commit

Permalink
fix: apply review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
tamtamchik committed Sep 23, 2024
1 parent 3a3f2f6 commit eaaed4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions lib/log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ const MIN_LINE_LENGTH = 4;
const LINE_LENGTH = 20;
const LONG_LINE_LENGTH = 40;

export const OK = gr("[✓]");
export const NOT_OK = rd("[×]");
export const WARN = yl("[!]");
export const OK = "✅";
export const NOT_OK = "🚨";
export const WARN = "⚠️";

const LOG_LEVEL = process.env.LOG_LEVEL || "info";

Expand Down
3 changes: 0 additions & 3 deletions scripts/dao-upgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,3 @@ yarn compile
export STEPS_FILE=upgrade/steps.json

yarn hardhat --network $NETWORK run --no-compile scripts/utils/migrate.ts

# TODO
# yarn hardhat --network $NETWORK run --no-compile scripts/scratch/steps/90-check-dao.ts

0 comments on commit eaaed4b

Please sign in to comment.