mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
cd8d499198
* Move weak subjectivity endpoint to HTTP * remove server test file * remove deprecation
13 lines
321 B
Go
13 lines
321 B
Go
package beacon
|
|
|
|
import "github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/eth/shared"
|
|
|
|
type GetWeakSubjectivityResponse struct {
|
|
Data *WeakSubjectivityData `json:"data"`
|
|
}
|
|
|
|
type WeakSubjectivityData struct {
|
|
WsCheckpoint *shared.Checkpoint `json:"ws_checkpoint"`
|
|
StateRoot string `json:"state_root"`
|
|
}
|