We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a3f2f6 commit eaaed4bCopy full SHA for eaaed4b
lib/log.ts
@@ -23,9 +23,9 @@ const MIN_LINE_LENGTH = 4;
23
const LINE_LENGTH = 20;
24
const LONG_LINE_LENGTH = 40;
25
26
-export const OK = gr("[✓]");
27
-export const NOT_OK = rd("[×]");
28
-export const WARN = yl("[!]");
+export const OK = "✅";
+export const NOT_OK = "🚨";
+export const WARN = "⚠️";
29
30
const LOG_LEVEL = process.env.LOG_LEVEL || "info";
31
scripts/dao-upgrade.sh
@@ -22,6 +22,3 @@ yarn compile
22
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 commit comments