From eaaed4bfe4a0796169c4dfe7e07a432358bf4c01 Mon Sep 17 00:00:00 2001 From: Yuri Tkachenko Date: Mon, 23 Sep 2024 21:59:53 +0100 Subject: [PATCH] fix: apply review suggestions --- lib/log.ts | 6 +++--- scripts/dao-upgrade.sh | 3 --- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/lib/log.ts b/lib/log.ts index 1d68def71..1291fafba 100644 --- a/lib/log.ts +++ b/lib/log.ts @@ -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"; diff --git a/scripts/dao-upgrade.sh b/scripts/dao-upgrade.sh index 598e826b1..97b2a6461 100755 --- a/scripts/dao-upgrade.sh +++ b/scripts/dao-upgrade.sh @@ -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