2021-06-30 15:06:19 +00:00
|
|
|
package v1
|
2021-04-12 14:23:55 +00:00
|
|
|
|
|
|
|
import (
|
2021-07-21 21:34:07 +00:00
|
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
2021-04-12 14:23:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Eth1Data corresponding to the proof-of-work chain information stored in the beacon state.
|
|
|
|
func (b *BeaconState) Eth1Data() *ethpb.Eth1Data {
|
|
|
|
if !b.hasInnerState() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if b.state.Eth1Data == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
b.lock.RLock()
|
|
|
|
defer b.lock.RUnlock()
|
|
|
|
|
|
|
|
return b.eth1Data()
|
|
|
|
}
|
|
|
|
|
|
|
|
// eth1Data corresponding to the proof-of-work chain information stored in the beacon state.
|
|
|
|
// This assumes that a lock is already held on BeaconState.
|
|
|
|
func (b *BeaconState) eth1Data() *ethpb.Eth1Data {
|
|
|
|
if !b.hasInnerState() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if b.state.Eth1Data == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-09-04 06:55:57 +00:00
|
|
|
return ethpb.CopyETH1Data(b.state.Eth1Data)
|
2021-04-12 14:23:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-26 19:00:33 +00:00
|
|
|
// Eth1DataVotes corresponds to votes from Ethereum on the canonical proof-of-work chain
|
2021-04-12 14:23:55 +00:00
|
|
|
// data retrieved from eth1.
|
|
|
|
func (b *BeaconState) Eth1DataVotes() []*ethpb.Eth1Data {
|
|
|
|
if !b.hasInnerState() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if b.state.Eth1DataVotes == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
b.lock.RLock()
|
|
|
|
defer b.lock.RUnlock()
|
|
|
|
|
|
|
|
return b.eth1DataVotes()
|
|
|
|
}
|
|
|
|
|
2021-06-26 19:00:33 +00:00
|
|
|
// eth1DataVotes corresponds to votes from Ethereum on the canonical proof-of-work chain
|
2021-04-12 14:23:55 +00:00
|
|
|
// data retrieved from eth1.
|
|
|
|
// This assumes that a lock is already held on BeaconState.
|
|
|
|
func (b *BeaconState) eth1DataVotes() []*ethpb.Eth1Data {
|
|
|
|
if !b.hasInnerState() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if b.state.Eth1DataVotes == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
res := make([]*ethpb.Eth1Data, len(b.state.Eth1DataVotes))
|
|
|
|
for i := 0; i < len(res); i++ {
|
2021-09-04 06:55:57 +00:00
|
|
|
res[i] = ethpb.CopyETH1Data(b.state.Eth1DataVotes[i])
|
2021-04-12 14:23:55 +00:00
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
// Eth1DepositIndex corresponds to the index of the deposit made to the
|
|
|
|
// validator deposit contract at the time of this state's eth1 data.
|
|
|
|
func (b *BeaconState) Eth1DepositIndex() uint64 {
|
|
|
|
if !b.hasInnerState() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
b.lock.RLock()
|
|
|
|
defer b.lock.RUnlock()
|
|
|
|
|
|
|
|
return b.eth1DepositIndex()
|
|
|
|
}
|
|
|
|
|
|
|
|
// eth1DepositIndex corresponds to the index of the deposit made to the
|
|
|
|
// validator deposit contract at the time of this state's eth1 data.
|
|
|
|
// This assumes that a lock is already held on BeaconState.
|
|
|
|
func (b *BeaconState) eth1DepositIndex() uint64 {
|
|
|
|
if !b.hasInnerState() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.state.Eth1DepositIndex
|
|
|
|
}
|