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

121 lines
3.4 KiB
Go
Raw Normal View History

2020-09-19 03:46:03 +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"
miner2 "github.com/filecoin-project/specs-actors/v2/actors/builtin/miner"
reward2 "github.com/filecoin-project/specs-actors/v2/actors/builtin/reward"
smoothing2 "github.com/filecoin-project/specs-actors/v2/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-19 03:46:03 +00:00
)
var _ State = (*state2)(nil)
2020-09-19 03:46:03 +00:00
func load2(store adt.Store, root cid.Cid) (State, error) {
out := state2{store: store}
err := store.Get(store.Context(), root, &out)
if err != nil {
return nil, err
}
return &out, nil
}
func make2(store adt.Store, currRealizedPower abi.StoragePower) (State, error) {
out := state2{store: store}
out.State = *reward2.ConstructState(currRealizedPower)
return &out, nil
}
type state2 struct {
reward2.State
2020-09-19 03:46:03 +00:00
store adt.Store
}
2020-11-06 03:06:57 +00:00
func (s *state2) ThisEpochReward() (abi.TokenAmount, error) {
2020-09-19 03:46:03 +00:00
return s.State.ThisEpochReward, nil
}
func (s *state2) ThisEpochRewardSmoothed() (builtin.FilterEstimate, error) {
2021-04-30 15:51:24 +00:00
2020-09-19 03:46:03 +00:00
return builtin.FilterEstimate{
PositionEstimate: s.State.ThisEpochRewardSmoothed.PositionEstimate,
VelocityEstimate: s.State.ThisEpochRewardSmoothed.VelocityEstimate,
}, nil
2021-04-30 15:51:24 +00:00
2020-09-19 03:46:03 +00:00
}
func (s *state2) ThisEpochBaselinePower() (abi.StoragePower, error) {
2020-09-19 03:46:03 +00:00
return s.State.ThisEpochBaselinePower, nil
}
func (s *state2) TotalStoragePowerReward() (abi.TokenAmount, error) {
2020-09-19 03:46:03 +00:00
return s.State.TotalStoragePowerReward, nil
}
func (s *state2) EffectiveBaselinePower() (abi.StoragePower, error) {
2020-09-19 03:46:03 +00:00
return s.State.EffectiveBaselinePower, nil
}
func (s *state2) EffectiveNetworkTime() (abi.ChainEpoch, error) {
2020-09-19 03:46:03 +00:00
return s.State.EffectiveNetworkTime, nil
}
2020-11-06 03:06:57 +00:00
func (s *state2) CumsumBaseline() (reward2.Spacetime, error) {
2020-09-19 03:46:03 +00:00
return s.State.CumsumBaseline, nil
}
2020-11-06 03:06:57 +00:00
func (s *state2) CumsumRealized() (reward2.Spacetime, error) {
return s.State.CumsumRealized, nil
2020-09-19 03:46:03 +00:00
}
func (s *state2) InitialPledgeForPower(qaPower abi.StoragePower, networkTotalPledge abi.TokenAmount, networkQAPower *builtin.FilterEstimate, circSupply abi.TokenAmount) (abi.TokenAmount, error) {
return miner2.InitialPledgeForPower(
2020-09-19 03:46:03 +00:00
qaPower,
s.State.ThisEpochBaselinePower,
s.State.ThisEpochRewardSmoothed,
smoothing2.FilterEstimate{
2020-09-19 03:46:03 +00:00
PositionEstimate: networkQAPower.PositionEstimate,
VelocityEstimate: networkQAPower.VelocityEstimate,
},
circSupply,
), nil
}
func (s *state2) PreCommitDepositForPower(networkQAPower builtin.FilterEstimate, sectorWeight abi.StoragePower) (abi.TokenAmount, error) {
return miner2.PreCommitDepositForPower(s.State.ThisEpochRewardSmoothed,
smoothing2.FilterEstimate{
2020-09-19 03:46:03 +00:00
PositionEstimate: networkQAPower.PositionEstimate,
VelocityEstimate: networkQAPower.VelocityEstimate,
},
sectorWeight), nil
}
func (s *state2) GetState() interface{} {
return &s.State
}
func (s *state2) ActorKey() string {
return manifest.RewardKey
}
func (s *state2) ActorVersion() actorstypes.Version {
return actorstypes.Version2
}
func (s *state2) 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
}