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

73 lines
2.3 KiB
Go
Raw Normal View History

2020-09-15 21:55:48 +00:00
package reward
import (
2020-09-17 06:42:39 +00:00
"github.com/filecoin-project/go-state-types/abi"
2020-09-15 23:47:58 +00:00
"github.com/filecoin-project/lotus/chain/actors/builtin"
miner0 "github.com/filecoin-project/specs-actors/actors/builtin/miner"
2020-09-15 21:55:48 +00:00
"github.com/filecoin-project/specs-actors/actors/builtin/reward"
"github.com/filecoin-project/specs-actors/actors/util/adt"
"github.com/filecoin-project/specs-actors/actors/util/smoothing"
2020-09-15 21:55:48 +00:00
)
type state0 struct {
2020-09-15 21:55:48 +00:00
reward.State
store adt.Store
}
2020-09-15 23:47:58 +00:00
func (s *state0) ThisEpochReward() (abi.StoragePower, error) {
2020-09-18 20:43:14 +00:00
return s.State.ThisEpochReward, nil
}
func (s *state0) ThisEpochRewardSmoothed() (builtin.FilterEstimate, error) {
return builtin.FilterEstimate{
PositionEstimate: s.State.ThisEpochRewardSmoothed.PositionEstimate,
VelocityEstimate: s.State.ThisEpochRewardSmoothed.VelocityEstimate,
}, nil
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() (abi.StoragePower, error) {
2020-09-18 20:43:14 +00:00
return s.State.CumsumBaseline, nil
}
func (s *state0) CumsumRealized() (abi.StoragePower, error) {
2020-09-18 20:43:14 +00:00
return s.State.CumsumBaseline, 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,
&smoothing.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,
&smoothing.FilterEstimate{
PositionEstimate: networkQAPower.PositionEstimate,
VelocityEstimate: networkQAPower.VelocityEstimate,
},
sectorWeight), nil
}