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

29 lines
659 B
Go
Raw Normal View History

2020-09-15 21:44:03 +00:00
package multisig
import (
"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/lotus/chain/actors/adt"
"github.com/filecoin-project/specs-actors/actors/builtin/multisig"
)
type state0 struct {
2020-09-15 21:44:03 +00:00
multisig.State
store adt.Store
}
func (s *state0) LockedBalance(currEpoch abi.ChainEpoch) (abi.TokenAmount, error) {
2020-09-17 06:50:59 +00:00
return s.State.AmountLocked(currEpoch - s.State.StartEpoch), nil
}
func (s *state0) StartEpoch() abi.ChainEpoch {
2020-09-17 06:50:59 +00:00
return s.State.StartEpoch
}
func (s *state0) UnlockDuration() abi.ChainEpoch {
2020-09-17 06:50:59 +00:00
return s.State.UnlockDuration
}
func (s *state0) InitialBalance() abi.TokenAmount {
2020-09-17 06:50:59 +00:00
return s.State.InitialBalance
2020-09-15 21:44:03 +00:00
}