You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default app.toml file is generated with double-quotes for strings. However, we have tooling that rewrites the TOML file. We have the strings as single-quote literal.
This presents an issue with mempool configuration in app.toml. We have configuration:
[osmosis-mempool]
arbitrage-min-gas-fee = '.005'
When we start running the chain, this is overwritten to:
As result, next time Osmosis is restarted, app.toml file cannot be parsed and we encounter a failure.
Osmosis Version
24.0.0
How to reproduce?
Replace all double-quotes with single-quotes for app.toml, and start Osmosis chain binary:
[osmosis-mempool]
arbitrage-min-gas-fee = '.005'
The text was updated successfully, but these errors were encountered:
sigv
changed the title
[Bug]: app.toml file with literal strings gets broken on Osmosis startup
[Bug]: app.toml file with literal strings gets broken on startup
Apr 15, 2024
sigv
changed the title
[Bug]: app.toml file with literal strings gets broken on startup
[Bug]: app.toml file with literal string for osmosis-mempool.arbitrage-min-gas-fee gets broken on startup
Apr 15, 2024
What happened?
The default app.toml file is generated with double-quotes for strings. However, we have tooling that rewrites the TOML file. We have the strings as single-quote literal.
This presents an issue with mempool configuration in app.toml. We have configuration:
When we start running the chain, this is overwritten to:
As result, next time Osmosis is restarted, app.toml file cannot be parsed and we encounter a failure.
Osmosis Version
24.0.0
How to reproduce?
Replace all double-quotes with single-quotes for app.toml, and start Osmosis chain binary:
The text was updated successfully, but these errors were encountered: