소스 검색

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