diff --git a/cmd/ud.go b/cmd/ud.go
index 8ee968508efd096cf8b6597fe95a212b8cdbdebc..08566d5f9b5535fd5a8915f67f31e38ecdf4fb58 100644
--- a/cmd/ud.go
+++ b/cmd/ud.go
@@ -252,8 +252,8 @@ var udCmd = &cobra.Command{
 // to contact UD.
 func getUdContactInfo(user *xxdk.E2e) (cert, contactFile []byte, address string, err error) {
 	// Retrieve address
-	address = string([]byte(user.GetCmix().GetInstance().GetPartialNdf().
-		Get().UDB.Address))
+	address = string(user.GetCmix().GetInstance().GetPartialNdf().
+		Get().UDB.Address)
 
 	// Retrieve certificate
 	cert = []byte(user.GetCmix().GetInstance().GetPartialNdf().Get().UDB.Cert)
diff --git a/cmd/version.go b/cmd/version.go
index 0a90ed6fa934e4ef6edaeae3326976a4870c640a..328c9cb0e5bd41b410b01bf498bf0f59997e041c 100644
--- a/cmd/version.go
+++ b/cmd/version.go
@@ -21,7 +21,7 @@ import (
 const currentVersion = "4.2.0"
 
 func Version() string {
-	out := fmt.Sprintf("Elixxir Cmix v%s -- %s\n\n", xxdk.SEMVER,
+	out := fmt.Sprintf("Elixxir Client v%s -- %s\n\n", xxdk.SEMVER,
 		xxdk.GITVERSION)
 	out += fmt.Sprintf("Dependencies:\n\n%s\n", xxdk.DEPENDENCIES)
 	return out