Skip to content
Draft
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -1671,7 +1671,7 @@ func (app *App) RegisterTxService(clientCtx client.Context) {

func (app *App) RPCContextProvider(i int64) sdk.Context {
if i == evmrpc.LatestCtxHeight {
return app.GetCheckCtx().WithIsEVM(true).WithIsTracing(true).WithIsCheckTx(false).WithClosestUpgradeName(LatestUpgrade)
return app.GetCheckCtx().WithIsEVM(true).WithTraceMode(true).WithIsCheckTx(false).WithClosestUpgradeName(LatestUpgrade)
}
ctx, err := app.CreateQueryContext(i, false)
if err != nil {
Expand All @@ -1682,7 +1682,7 @@ func (app *App) RPCContextProvider(i int64) sdk.Context {
closestUpgrade = LatestUpgrade
}
ctx = ctx.WithClosestUpgradeName(closestUpgrade)
return ctx.WithIsEVM(true).WithIsTracing(true).WithIsCheckTx(false)
return ctx.WithIsEVM(true).WithTraceMode(true).WithIsCheckTx(false)
}

// RegisterTendermintService implements the Application.RegisterTendermintService method.
Expand Down
Loading
Loading