power

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 15, 2021 License: Apache-2.0, MIT Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

Functions

This section is empty.

Types

type Claim

type Claim struct {
	// Sum of raw byte power for a miner's sectors.
	RawBytePower abi.StoragePower

	// Sum of quality adjusted power for a miner's sectors.
	QualityAdjPower abi.StoragePower
}

func AddClaims

func AddClaims(a Claim, b Claim) Claim

type ClaimChanges

type ClaimChanges struct {
	Added    []ClaimInfo
	Modified []ClaimModification
	Removed  []ClaimInfo
}

func DiffClaims

func DiffClaims(pre, cur State) (*ClaimChanges, error)

type ClaimInfo

type ClaimInfo struct {
	Miner address.Address
	Claim Claim
}

type ClaimModification

type ClaimModification struct {
	Miner address.Address
	From  Claim
	To    Claim
}

type State

type State interface {
	cbor.Marshaler

	TotalLocked() (abi.TokenAmount, error)
	TotalPower() (Claim, error)
	TotalCommitted() (Claim, error)

	PoStRatio() (power3.WdPoStRatio, error)
	AllowNoPoSt(abi.ChainEpoch, abi.Randomness) (bool, error)

	// MinerCounts returns the number of miners. Participating is the number
	// with power above the minimum miner threshold.
	MinerCounts() (participating, total uint64, err error)
	MinerPower(address.Address) (Claim, bool, error)
	MinerNominalPowerMeetsConsensusMinimum(address.Address) (bool, error)
	ListAllMiners() ([]address.Address, error)
	ForEachClaim(func(miner address.Address, claim Claim) error) error
	ClaimsChanged(State) (bool, error)

	PledgeReleasePeriod() (abi.ChainEpoch, error)
	// contains filtered or unexported methods
}

func Load

func Load(store adt.Store, act *types.Actor) (st State, err error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL