Skip to content

Commit

Permalink
feat(evm): tracer option is read from the config (#1922)
Browse files Browse the repository at this point in the history
* feat(evm): tracer option is read from the config

* chore: lint
  • Loading branch information
onikonychev authored Jun 11, 2024
1 parent 6511f86 commit 4c6bb52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#1912](https://github.com/NibiruChain/nibiru/pull/1912) - test(evm): unit tests for evm_ante
- [#1914](https://github.com/NibiruChain/nibiru/pull/1914) - refactor(evm): Remove dead code and document non-EVM ante handler- [#1917](https://github.com/NibiruChain/nibiru/pull/1917) - test(e2e-evm): TypeScript support. Type generation from compiled contracts. Formatter for TS code.
- [#1917](https://github.com/NibiruChain/nibiru/pull/1917) - test(e2e-evm): TypeScript support. Type generation from compiled contracts. Formatter for TS code.
- [#1922](https://github.com/NibiruChain/nibiru/pull/1922) - feat(evm): tracer option is read from the config.

#### Dapp modules: perp, spot, oracle, etc

Expand Down
3 changes: 1 addition & 2 deletions app/keepers.go
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,6 @@ func (app *NibiruApp) InitKeepers(
),
)

evmTracer := "json"
app.EvmKeeper = evmkeeper.NewKeeper(
appCodec,
keys[evm.StoreKey],
Expand All @@ -402,7 +401,7 @@ func (app *NibiruApp) InitKeepers(
app.AccountKeeper,
app.BankKeeper,
app.StakingKeeper,
evmTracer,
cast.ToString(appOpts.Get("evm.tracer")),
)

// ---------------------------------- IBC keepers
Expand Down

0 comments on commit 4c6bb52

Please sign in to comment.