From d1486d5be7b5b6f996495c146ce6d481f6a66cde Mon Sep 17 00:00:00 2001 From: Cassandra Heart Date: Sun, 24 Sep 2023 23:34:31 -0500 Subject: [PATCH] =?UTF-8?q?QOL=20=E2=80=93=20handle=20join=20announcements?= =?UTF-8?q?=20better=20by=20pre-empting=20the=20bundle=20announcement?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- node/execution/ceremony/ceremony_execution_engine.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/node/execution/ceremony/ceremony_execution_engine.go b/node/execution/ceremony/ceremony_execution_engine.go index a5f5757..cfafb9d 100644 --- a/node/execution/ceremony/ceremony_execution_engine.go +++ b/node/execution/ceremony/ceremony_execution_engine.go @@ -491,10 +491,10 @@ func (e *CeremonyExecutionEngine) announceJoin( keys.KeyTypeX448, ) if err != nil { - return errors.Wrap(err, "announce key bundle") + return errors.Wrap(err, "announce join") } } else { - return errors.Wrap(err, "announce key bundle") + return errors.Wrap(err, "announce join") } } @@ -506,10 +506,10 @@ func (e *CeremonyExecutionEngine) announceJoin( keys.KeyTypeX448, ) if err != nil { - return errors.Wrap(err, "announce key bundle") + return errors.Wrap(err, "announce join") } } else { - return errors.Wrap(err, "announce key bundle") + return errors.Wrap(err, "announce join") } }