浏览代码

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: {