The core protocol of WoopChain
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.
woop/api/service/staking/service.go

64 lines
1.3 KiB

6 years ago
package staking
import (
6 years ago
"github.com/harmony-one/harmony/internal/utils"
6 years ago
"github.com/harmony-one/harmony/p2p"
)
6 years ago
// Service is the staking service.
6 years ago
type Service struct {
stopChan chan struct{}
stoppedChan chan struct{}
peerChan chan *p2p.Peer
6 years ago
}
6 years ago
// New returns staking service.
func New(peerChan chan *p2p.Peer) *Service {
return &Service{
stopChan: make(chan struct{}),
stoppedChan: make(chan struct{}),
peerChan: peerChan,
}
}
6 years ago
// StartService starts staking service.
6 years ago
func (s *Service) StartService() {
s.Init()
s.Run()
}
6 years ago
// Init initializes staking service.
func (s *Service) Init() {
}
6 years ago
// Run runs staking.
func (s *Service) Run() {
// Wait until peer info of beacon chain is ready.
peer := <-s.peerChan
go func() {
defer close(s.stoppedChan)
for {
select {
default:
6 years ago
utils.GetLogInstance().Info("Running staking")
// TODO: Write some logic here.
s.DoService(peer)
case <-s.stopChan:
return
}
}
}()
6 years ago
}
6 years ago
// DoService does staking.
func (s *Service) DoService(peer *p2p.Peer) {
6 years ago
}
6 years ago
// StopService stops staking service.
6 years ago
func (s *Service) StopService() {
6 years ago
utils.GetLogInstance().Info("Stopping staking service.")
s.stopChan <- struct{}{}
<-s.stoppedChan
utils.GetLogInstance().Info("Role conversion stopped.")
6 years ago
}