From 6dde6949d7947c6c8ece03526244ca82c61ed909 Mon Sep 17 00:00:00 2001
From: Jake Taylor <jake@elixxir.io>
Date: Tue, 25 May 2021 14:04:15 -0500
Subject: [PATCH] add authconfirm and authrequest messages to e2e report

---
 basice2e/e2eReport.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/basice2e/e2eReport.py b/basice2e/e2eReport.py
index 57346b5..1157483 100644
--- a/basice2e/e2eReport.py
+++ b/basice2e/e2eReport.py
@@ -68,7 +68,7 @@ def main():
                         if sent_round not in rounds_sent:
                             rounds_sent[sent_round] = False
 
-                    elif "Received message of type" in line:
+                    elif "Received message of type" in line or "Received AuthRequest from" in line or "Received AuthConfirm from" in line:
                         # Capture message receiving
                         received_message = re.findall(' msgDigest: (.{20})', line)[0]
                         log.debug("Located received message: {}".format(received_message))
-- 
GitLab