From 1c5a34e920a459bee0ab384096396d4ceea61523 Mon Sep 17 00:00:00 2001 From: josh <josh@elixxir.io> Date: Tue, 25 May 2021 09:48:28 -0700 Subject: [PATCH] Fix typo --- keyExchange/confirm.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/keyExchange/confirm.go b/keyExchange/confirm.go index 01c43c5d4..b89b7c8db 100644 --- a/keyExchange/confirm.go +++ b/keyExchange/confirm.go @@ -82,11 +82,11 @@ func unmarshalConfirm(payload []byte) (e2e.SessionID, error) { "unmarshal payload: %s", err) } - confimedSessionID := e2e.SessionID{} - if err := confimedSessionID.Unmarshal(msg.SessionID); err != nil { + confirmedSessionID := e2e.SessionID{} + if err := confirmedSessionID.Unmarshal(msg.SessionID); err != nil { return e2e.SessionID{}, errors.Errorf("Failed to unmarshal"+ " sessionID: %s", err) } - return confimedSessionID, nil + return confirmedSessionID, nil } -- GitLab