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

refactor(eth-rpc): Delete unused code and improve logging in the eth and debug namespaces #2030

Merged
merged 13 commits into from
Sep 12, 2024
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#2020](https://github.com/NibiruChain/nibiru/pull/2020) - test(evm): e2e tests for debug namespace
- [#2022](https://github.com/NibiruChain/nibiru/pull/2022) - feat(evm): debug_traceCall method implemented
- [#2023](https://github.com/NibiruChain/nibiru/pull/2023) - fix(evm)!: adjusted generation and parsing of the block bloom events
- [#2030](https://github.com/NibiruChain/nibiru/pull/2030) - refactor(eth/rpc): Delete unused code and improve logging in the eth and debug namespaces
- [#2031](https://github.com/NibiruChain/nibiru/pull/2031) - fix(evm): debug calls with custom tracer and tracer options

#### Dapp modules: perp, spot, oracle, etc
Expand Down
3 changes: 3 additions & 0 deletions app/evmante/evmante_emit_event.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ func (eeed EthEmitEventDecorator) AnteHandle(
10,
),
), // #nosec G701
// TODO: fix: It's odd that each event is emitted twice. Migrate to typed
// events and change EVM indexer to align.
// sdk.NewAttribute("emitted_from", "EthEmitEventDecorator"),
))
}

Expand Down
Loading
Loading