fix: append Log in tx post processing response (#1088)

* fix post processing log

* update changelog
This commit is contained in:
Thomas Nguy
2022-05-19 12:11:26 +02:00
committed by GitHub
parent d359cbd9c9
commit 9edc87d114
2 changed files with 3 additions and 0 deletions
+2
View File
@@ -271,6 +271,8 @@ func (k *Keeper) ApplyTransaction(ctx sdk.Context, tx *ethtypes.Transaction) (*t
} else if commit != nil {
// PostTxProcessing is successful, commit the tmpCtx
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())
}
}