Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default gas limit to 12 million #650

Merged
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased](https://github.com/eth-brownie/brownie)
### Fixed
- Less restrictive `default_langauge_version` in pre-commit hooks
- Updated network configs to match mainnet's latest gas limits

## [1.9.4](https://github.com/eth-brownie/brownie/tree/v1.9.4) - 2020-06-21
### Fixed
Expand Down
4 changes: 2 additions & 2 deletions brownie/data/default-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ project_structure:
networks:
default: development
development:
gas_limit: 6721975
gas_limit: 12000000
gas_price: 0
reverting_tx_gas_limit: 6721975
reverting_tx_gas_limit: 12000000
default_contract_owner: true
cmd_settings: null
live:
Expand Down
4 changes: 2 additions & 2 deletions brownie/data/network-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ development:
host: http://127.0.0.1
cmd_settings:
port: 8545
gas_limit: 6721975
gas_limit: 12000000
accounts: 10
evm_version: istanbul
mnemonic: brownie
Expand All @@ -57,7 +57,7 @@ development:
timeout: 120
cmd_settings:
port: 8545
gas_limit: 10000000
gas_limit: 12000000
accounts: 10
evm_version: istanbul
mnemonic: brownie
Expand Down