lotus/chain/actors/builtin/reward/v0.go

118 lines
3.3 KiB
Go
Raw Normal View History

2020-09-15 21:55:48 +00:00
package reward
import (
"fmt"
"github.com/ipfs/go-cid"
2022-06-14 15:00:51 +00:00
"github.com/filecoin-project/go-state-types/abi"
actorstypes "github.com/filecoin-project/go-state-types/actors"
"github.com/filecoin-project/go-state-types/manifest"
miner0 "github.com/filecoin-project/specs-actors/actors/builtin/miner"
reward0 "github.com/filecoin-project/specs-actors/actors/builtin/reward"
smoothing0 "github.com/filecoin-project/specs-actors/actors/util/smoothing"
2022-06-14 15:00:51 +00:00
"github.com/filecoin-project/lotus/chain/actors"
2022-06-14 15:00:51 +00:00
"github.com/filecoin-project/lotus/chain/actors/adt"
"github.com/filecoin-project/lotus/chain/actors/builtin"
2020-09-15 21:55:48 +00:00
)
var _ State = (*state0)(nil)
func load0(store adt.Store, root cid.Cid) (State, error) {
out := state0{store: store}
err := store.Get(store.Context(), root, &out)
if err != nil {
return nil, err
}
return &out, nil
}
func make0(store adt.Store, currRealizedPower abi.StoragePower) (State, error) {
out := state0{store: store}
out.State = *reward0.ConstructState(currRealizedPower)
return &out, nil
}
type state0 struct {
reward0.State
2020-09-15 21:55:48 +00:00
store adt.Store
}
2020-09-15 23:47:58 +00:00
func (s *state0) ThisEpochReward() (abi.TokenAmount, error) {
2020-09-18 20:43:14 +00:00
return s.State.ThisEpochReward, nil
}
func (s *state0) ThisEpochRewardSmoothed() (builtin.FilterEstimate, error) {
2021-04-30 15:51:24 +00:00
2022-04-20 21:34:28 +00:00
return builtin.FilterEstimate(*s.State.ThisEpochRewardSmoothed), nil
2021-04-30 15:51:24 +00:00
2020-09-15 23:47:58 +00:00
}
2020-09-17 06:42:39 +00:00
func (s *state0) ThisEpochBaselinePower() (abi.StoragePower, error) {
2020-09-18 20:43:14 +00:00
return s.State.ThisEpochBaselinePower, nil
}
func (s *state0) TotalStoragePowerReward() (abi.TokenAmount, error) {
2020-09-17 08:17:14 +00:00
return s.State.TotalMined, nil
}
func (s *state0) EffectiveBaselinePower() (abi.StoragePower, error) {
2020-09-17 08:17:14 +00:00
return s.State.EffectiveBaselinePower, nil
}
func (s *state0) EffectiveNetworkTime() (abi.ChainEpoch, error) {
2020-09-18 20:43:14 +00:00
return s.State.EffectiveNetworkTime, nil
}
func (s *state0) CumsumBaseline() (reward0.Spacetime, error) {
2020-09-18 20:43:14 +00:00
return s.State.CumsumBaseline, nil
}
func (s *state0) CumsumRealized() (reward0.Spacetime, error) {
return s.State.CumsumRealized, nil
2020-09-17 06:42:39 +00:00
}
func (s *state0) InitialPledgeForPower(sectorWeight abi.StoragePower, networkTotalPledge abi.TokenAmount, networkQAPower *builtin.FilterEstimate, circSupply abi.TokenAmount) (abi.TokenAmount, error) {
return miner0.InitialPledgeForPower(
sectorWeight,
s.State.ThisEpochBaselinePower,
networkTotalPledge,
s.State.ThisEpochRewardSmoothed,
&smoothing0.FilterEstimate{
PositionEstimate: networkQAPower.PositionEstimate,
VelocityEstimate: networkQAPower.VelocityEstimate,
},
circSupply), nil
}
func (s *state0) PreCommitDepositForPower(networkQAPower builtin.FilterEstimate, sectorWeight abi.StoragePower) (abi.TokenAmount, error) {
return miner0.PreCommitDepositForPower(s.State.ThisEpochRewardSmoothed,
&smoothing0.FilterEstimate{
PositionEstimate: networkQAPower.PositionEstimate,
VelocityEstimate: networkQAPower.VelocityEstimate,
},
sectorWeight), nil
}
func (s *state0) GetState() interface{} {
return &s.State
}
func (s *state0) ActorKey() string {
return manifest.RewardKey
}
func (s *state0) ActorVersion() actorstypes.Version {
return actorstypes.Version0
}
func (s *state0) Code() cid.Cid {
code, ok := actors.GetActorCodeID(s.ActorVersion(), s.ActorKey())
if !ok {
panic(fmt.Errorf("didn't find actor %v code id for actor version %d", s.ActorKey(), s.ActorVersion()))
}
return code
}