From 0f5f6492147fdd74ed3db96d6ca4092093fc0061 Mon Sep 17 00:00:00 2001 From: Benjamin Wenger <ben@privategrity.com> Date: Thu, 9 Dec 2021 18:04:51 +0000 Subject: [PATCH] fixed formatting --- bindings/notifications.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/bindings/notifications.go b/bindings/notifications.go index 733e87c1d..2c5574d19 100644 --- a/bindings/notifications.go +++ b/bindings/notifications.go @@ -36,13 +36,13 @@ func (nfmr *NotificationForMeReport) Source() []byte { // NotificationForMe Check if a notification received is for me // It returns a NotificationForMeReport which contains a ForMe bool stating if it is for the caller, // a Type, and a source. These are as follows: -// TYPE DESCRIPTION SOURCE -// "default" A message with no association recipient user ID -// "request" A channel request has been received recipient user ID -// "confirm" A channel request has been accepted sender user ID -// "rekey" keys with a user have been rotated sender user ID -// "e2e" reception of an E2E message sender user ID -// "group" eception of a group chat message group ID +// TYPE SOURCE DESCRIPTION +// "default" recipient user ID A message with no association +// "request" sender user ID A channel request has been received +// "confirm" sender user ID A channel request has been accepted +// "rekey" sender user ID keys with a user have been rotated +// "e2e" sender user ID reception of an E2E message +// "group" group ID reception of a group chat message func NotificationForMe(messageHash, idFP string, preimages string) (*NotificationForMeReport, error) { //handle message hash and idFP messageHashBytes, err := base64.StdEncoding.DecodeString(messageHash) -- GitLab