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

fix(config): lower per-message gas hardcode #204

Merged
merged 2 commits into from
Jul 12, 2022
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
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