Skip to content

Commit

Permalink
fix: config block gas limit
Browse files Browse the repository at this point in the history
  • Loading branch information
krogla committed Sep 7, 2023
1 parent 1ea7f42 commit 01a63f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ const getNetConfig = (networkName, ethAccountName) => {
...base,
url: 'http://localhost:8545',
chainId: 31337,
gas: 80000000, // the same as in Görli
gas: 100000000, // the same as in Görli
}
const mainnetfork = {
...base,
url: 'http://127.0.0.1:8545',
chainId: 1337,
gas: 80000000, // the same as in Görli
gas: 100000000, // the same as in Görli
}
const byNetName = {
localhost,
Expand All @@ -69,7 +69,7 @@ const getNetConfig = (networkName, ethAccountName) => {
chainId: 1337,
},
hardhat: {
blockGasLimit: 30000000,
blockGasLimit: 100000000,
gasPrice: 0,
initialBaseFeePerGas: 0,
allowUnlimitedContractSize: true,
Expand Down

0 comments on commit 01a63f2

Please sign in to comment.