Преглед на файлове

fix: broken hardhat-gas-reporter due to empty string in config

see https://github.com/cgewecke/hardhat-gas-reporter/issues/59#issuecomment-812589987
Paul Razvan Berg преди 4 години
родител
ревизия
0ea95227a6
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      hardhat.config.ts

+ 1 - 1
hardhat.config.ts

@@ -58,7 +58,7 @@ const config: HardhatUserConfig = {
   gasReporter: {
     currency: "USD",
     enabled: process.env.REPORT_GAS ? true : false,
-    excludeContracts: [""],
+    excludeContracts: [],
     src: "./contracts",
   },
   networks: {