Skip to content

Commit

Permalink
fix: duplicate events on evm transfer (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
zale144 authored Nov 22, 2024
1 parent acbc0d2 commit 257f6b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ Ref: https://keepachangelog.com/en/1.0.0/

- (deps) [#1635](https://github.com/evmos/evmos/pull/1635) Update cometbft `v0.34.29` with several minor bug fixes and low-severity security-fixes

### Bug Fixes

- (evm) [#33](https://github.com/dymensionxyz/evmos/issues/33) Prevent duplicate events on transfer

## [v12.1.5] - 2023-06-08

### Bug Fixes
Expand Down
1 change: 0 additions & 1 deletion x/evm/keeper/state_transition.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ func (k *Keeper) ApplyTransaction(ctx sdk.Context, tx *ethtypes.Transaction) (*t
commit()
// Since the post-processing can alter the log, we need to update the result
res.Logs = types.NewLogsFromEth(receipt.Logs)
ctx.EventManager().EmitEvents(tmpCtx.EventManager().Events())
}
}

Expand Down

0 comments on commit 257f6b1

Please sign in to comment.