mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 18:51:19 +00:00
19 lines
602 B
Go
19 lines
602 B
Go
|
package core
|
||
|
|
||
|
import (
|
||
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/blockchain"
|
||
|
opfeed "github.com/prysmaticlabs/prysm/v4/beacon-chain/core/feed/operation"
|
||
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/operations/synccommittee"
|
||
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/p2p"
|
||
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/sync"
|
||
|
)
|
||
|
|
||
|
type Service struct {
|
||
|
HeadFetcher blockchain.HeadFetcher
|
||
|
GenesisTimeFetcher blockchain.TimeFetcher
|
||
|
SyncChecker sync.Checker
|
||
|
Broadcaster p2p.Broadcaster
|
||
|
SyncCommitteePool synccommittee.Pool
|
||
|
OperationNotifier opfeed.Notifier
|
||
|
}
|