diff --git a/x/evm/keeper/msg_server.go b/x/evm/keeper/msg_server.go index 8329f040cb..9508813d62 100644 --- a/x/evm/keeper/msg_server.go +++ b/x/evm/keeper/msg_server.go @@ -32,14 +32,12 @@ func (k *Keeper) EthereumTx(goCtx context.Context, msg *types.MsgEthereumTx) (*t labels := []metrics.Label{ telemetry.NewLabel("tx_type", fmt.Sprintf("%d", tx.Type())), - telemetry.NewLabel("from", sender), } if tx.To() == nil { labels = []metrics.Label{telemetry.NewLabel("execution", "create")} } else { labels = []metrics.Label{ telemetry.NewLabel("execution", "call"), - telemetry.NewLabel("to", tx.To().Hex()), // recipient address (contract or account) } }