Fix propagation of RoundFailed events (#60)

This commit is contained in:
Louis Singer
2023-12-12 15:46:43 +01:00
committed by GitHub
parent 6d00ee280c
commit 325ef38197

View File

@@ -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
}
}