Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
4 changes: 3 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ const config: HardhatUserConfig = {
allowUnlimitedContractSize: false,
forking: (process.env.FORK) ? forkingConfig : undefined,
accounts: getHardhatPrivateKeys(),
gas: 12000000,
blockGasLimit: 12000000
},
localhost: {
url: "http://127.0.0.1:8545",
Expand Down Expand Up @@ -73,7 +75,7 @@ const config: HardhatUserConfig = {
contractSizer: {
runOnCompile: false,
},

mocha: mochaConfig,

// These are external artifacts we don't compile but would like to improve
Expand Down
Loading