mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 03:01:19 +00:00
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"`
|
||
|
}
|