From 325ef3819752c98cf0f6e5c8ff33897e3f9f4ef4 Mon Sep 17 00:00:00 2001 From: Louis Singer <41042567+louisinger@users.noreply.github.com> Date: Tue, 12 Dec 2023 15:46:43 +0100 Subject: [PATCH] Fix propagation of RoundFailed events (#60) --- asp/internal/core/application/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asp/internal/core/application/service.go b/asp/internal/core/application/service.go index 05afbef..7159e48 100644 --- a/asp/internal/core/application/service.go +++ b/asp/internal/core/application/service.go @@ -388,7 +388,7 @@ func (s *service) propagateEvents(round *domain.Round) { PoolTx: e.PoolTx, UnsignedForfeitTxs: forfeitTxs, } - case domain.RoundFinalized: + case domain.RoundFinalized, domain.RoundFailed: s.eventsCh <- e } }