You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
933 B
36 lines
933 B
package consensus
|
|
|
|
import (
|
|
msg_pb "github.com/woop-chain/woop/api/proto/message"
|
|
"github.com/woop-chain/woop/consensus"
|
|
"github.com/woop-chain/woop/internal/utils"
|
|
)
|
|
|
|
// Service is the consensus service.
|
|
type Service struct {
|
|
consensus *consensus.Consensus
|
|
stopChan chan struct{}
|
|
messageChan chan *msg_pb.Message
|
|
}
|
|
|
|
// New returns consensus service.
|
|
func New(consensus *consensus.Consensus) *Service {
|
|
return &Service{consensus: consensus}
|
|
}
|
|
|
|
// Start starts consensus service.
|
|
func (s *Service) Start() error {
|
|
utils.Logger().Info().Msg("[consensus/service] Starting consensus service.")
|
|
s.stopChan = make(chan struct{})
|
|
s.consensus.Start(s.stopChan)
|
|
s.consensus.WaitForNewRandomness()
|
|
return nil
|
|
}
|
|
|
|
// Stop stops consensus service.
|
|
func (s *Service) Stop() error {
|
|
utils.Logger().Info().Msg("Stopping consensus service.")
|
|
close(s.stopChan)
|
|
utils.Logger().Info().Msg("Consensus service stopped.")
|
|
return nil
|
|
}
|
|
|