Quellcode durchsuchen

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 vor 4 Jahren
Ursprung
Commit
0ea95227a6
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      hardhat.config.ts

+ 1 - 1
hardhat.config.ts

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