mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 03:31:20 +00:00
0cb46eb29a
* initial impl * review feedback * fix tests * review feedback * some improvements * tests and small improvements * gzl * one more review * fix test * fix other test * get the roots instead of hashing them * fix comment * fix justified case * fix all tests * misc * gzl * fix broken tests * use isOptimisticForRoot once we have the blockroot * Fix is_not_finalized_when_head_is_optimistic but reviewing the logic first * Fix is_not_finalized_when_head_is_optimistic * better root tests * move optimistic check before parsing root * check for last validated checkpoint * add right check for finalized * fix finalized tests * removed impossible condition * fix TestGetSyncCommitteeDuties * Use Ancestor from chaininfo * fix test --------- Co-authored-by: Potuz <potuz@prysmaticlabs.com> Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: rauljordan <raul@prysmaticlabs.com> Co-authored-by: terence tsao <terence@prysmaticlabs.com>
33 lines
1.4 KiB
Go
33 lines
1.4 KiB
Go
package validator
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/blockchain"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/cache"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/db"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/operations/attestations"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/operations/synccommittee"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/p2p"
|
|
v1alpha1validator "github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/prysm/v1alpha1/validator"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/statefetcher"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/sync"
|
|
)
|
|
|
|
// Server defines a server implementation of the gRPC Validator service,
|
|
// providing RPC endpoints intended for validator clients.
|
|
type Server struct {
|
|
HeadFetcher blockchain.HeadFetcher
|
|
HeadUpdater blockchain.HeadUpdater
|
|
TimeFetcher blockchain.TimeFetcher
|
|
SyncChecker sync.Checker
|
|
AttestationsPool attestations.Pool
|
|
PeerManager p2p.PeerManager
|
|
Broadcaster p2p.Broadcaster
|
|
StateFetcher statefetcher.Fetcher
|
|
OptimisticModeFetcher blockchain.OptimisticModeFetcher
|
|
SyncCommitteePool synccommittee.Pool
|
|
V1Alpha1Server *v1alpha1validator.Server
|
|
ProposerSlotIndexCache *cache.ProposerPayloadIDsCache
|
|
ChainInfoFetcher blockchain.ChainInfoFetcher
|
|
BeaconDB db.ReadOnlyDatabase
|
|
}
|