Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChainPower ¶
type ChainPower struct { Height int64 `pg:",pk,notnull,use_zero"` StateRoot string `pg:",pk"` TotalRawBytesPower string `pg:"type:numeric,notnull"` TotalQABytesPower string `pg:"type:numeric,notnull"` TotalRawBytesCommitted string `pg:"type:numeric,notnull"` TotalQABytesCommitted string `pg:"type:numeric,notnull"` TotalPledgeCollateral string `pg:"type:numeric,notnull"` QASmoothedPositionEstimate string `pg:"type:numeric,notnull"` QASmoothedVelocityEstimate string `pg:"type:numeric,notnull"` MinerCount uint64 `pg:",use_zero"` ParticipatingMinerCount uint64 `pg:",use_zero"` }
func (*ChainPower) AsVersion ¶
func (cp *ChainPower) AsVersion(version model.Version) (interface{}, bool)
func (*ChainPower) Persist ¶
func (cp *ChainPower) Persist(ctx context.Context, s model.StorageBatch, version model.Version) error
type ChainPowerList ¶
type ChainPowerList []*ChainPower
ChainPowerList is a slice of ChainPowers for batch insertion.
func (ChainPowerList) Persist ¶
func (cpl ChainPowerList) Persist(ctx context.Context, s model.StorageBatch, version model.Version) error
type ChainPowerV0 ¶
type ChainPowerV0 struct { Height int64 `pg:",pk,notnull,use_zero"` StateRoot string `pg:",pk"` TotalRawBytesPower string `pg:",notnull"` TotalQABytesPower string `pg:",notnull"` TotalRawBytesCommitted string `pg:",notnull"` TotalQABytesCommitted string `pg:",notnull"` TotalPledgeCollateral string `pg:",notnull"` QASmoothedPositionEstimate string `pg:",notnull"` QASmoothedVelocityEstimate string `pg:",notnull"` MinerCount uint64 `pg:",use_zero"` ParticipatingMinerCount uint64 `pg:",use_zero"` // contains filtered or unexported fields }
type PowerActorClaim ¶
type PowerActorClaim struct { Height int64 `pg:",pk,notnull,use_zero"` MinerID string `pg:",pk,notnull"` StateRoot string `pg:",pk,notnull"` RawBytePower string `pg:"type:numeric,notnull"` QualityAdjPower string `pg:"type:numeric,notnull"` }
func (*PowerActorClaim) AsVersion ¶
func (p *PowerActorClaim) AsVersion(version model.Version) (interface{}, bool)
func (*PowerActorClaim) Persist ¶
func (p *PowerActorClaim) Persist(ctx context.Context, s model.StorageBatch, version model.Version) error
type PowerActorClaimList ¶
type PowerActorClaimList []*PowerActorClaim
func (PowerActorClaimList) Persist ¶
func (pl PowerActorClaimList) Persist(ctx context.Context, s model.StorageBatch, version model.Version) error
type PowerActorClaimV0 ¶
type PowerTaskResult ¶
type PowerTaskResult struct { ChainPowerModel *ChainPower ClaimStateModel PowerActorClaimList }
func (*PowerTaskResult) Persist ¶
func (p *PowerTaskResult) Persist(ctx context.Context, s model.StorageBatch, version model.Version) error
Click to show internal directories.
Click to hide internal directories.