Skip to content

Commit

Permalink
ci(hardhat): adding no overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
re1ro committed Apr 9, 2024
1 parent e41151f commit e6bd35c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,12 @@ module.exports = {
solidity: {
compilers: [compilerSettings],
// Fix the Proxy bytecodes
overrides: {
'contracts/proxies/Proxy.sol': compilerSettings,
'contracts/proxies/TokenManagerProxy.sol': compilerSettings,
},
overrides: process.env.NO_OVERRIDES
? {}
: {
'contracts/proxies/Proxy.sol': compilerSettings,
'contracts/proxies/TokenManagerProxy.sol': compilerSettings,
},
},
defaultNetwork: 'hardhat',
networks,
Expand Down

0 comments on commit e6bd35c

Please sign in to comment.