Skip to content

Commit

Permalink
fix(config): remove evm defaults from unnecessary networks and lower …
Browse files Browse the repository at this point in the history
…per-message gas hardcode (#204)

* fix(config): remove evm defaults from unnecessary networks and lower per message hardcode for home:update

* chore(changelog): add changes to changelog
  • Loading branch information
luketchang committed Jul 12, 2022
1 parent 7fcaeac commit f797020
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions configuration/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### Unreleased

- feature: pull config files from github pages instead of local versions
- lower per-message gas hardcode for home:update calls
- add environment variable overrides for agent configuration
- add tests for agent environment variable overrides
- remove `enabled` flag from agents project-wide
Expand Down
2 changes: 1 addition & 1 deletion configuration/src/gas/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub const EVM_DEFAULT: NomadGasConfig = NomadGasConfig {
core: CoreGasConfig {
home: HomeGasLimits {
update: HomeUpdateGasLimit {
per_message: 10_000,
per_message: 2_000,
base: 100_000,
},
improper_update: HomeUpdateGasLimit {
Expand Down

0 comments on commit f797020

Please sign in to comment.