diff --git a/x/auth/handler.go b/x/auth/handler.go index bba03c56bc..8a0e1061ae 100644 --- a/x/auth/handler.go +++ b/x/auth/handler.go @@ -28,6 +28,7 @@ func handleMsgChangeKey(ctx sdk.Context, am AccountMapper, msg MsgChangeKey) sdk return err.Result() } - // TODO: add some tags so we can search it! - return sdk.Result{} // TODO + return sdk.Result{ + Tags: sdk.NewTags("action", []byte("changePubkey"), "address", msg.Address.Bytes(), "pubkey", msg.NewPubKey.Bytes()), + } }