2020-09-15 21:44:03 +00:00
|
|
|
package multisig
|
|
|
|
|
|
|
|
import (
|
2020-09-21 20:13:38 +00:00
|
|
|
"encoding/binary"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
2020-09-15 21:44:03 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
2020-09-21 20:13:38 +00:00
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
|
|
|
msig0 "github.com/filecoin-project/specs-actors/actors/builtin/multisig"
|
|
|
|
adt0 "github.com/filecoin-project/specs-actors/actors/util/adt"
|
2020-09-15 21:44:03 +00:00
|
|
|
)
|
|
|
|
|
2020-09-21 06:19:32 +00:00
|
|
|
var _ State = (*state0)(nil)
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
type state0 struct {
|
2020-09-21 20:13:38 +00:00
|
|
|
msig0.State
|
2020-09-15 21:44:03 +00:00
|
|
|
store adt.Store
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) StartEpoch() abi.ChainEpoch {
|
2020-09-17 06:50:59 +00:00
|
|
|
return s.State.StartEpoch
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) UnlockDuration() abi.ChainEpoch {
|
2020-09-17 06:50:59 +00:00
|
|
|
return s.State.UnlockDuration
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
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
|
|
|
}
|
2020-09-21 20:13:38 +00:00
|
|
|
|
|
|
|
func (s *state0) Threshold() uint64 {
|
|
|
|
return s.State.NumApprovalsThreshold
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state0) Signers() []address.Address {
|
|
|
|
return s.State.Signers
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state0) ForEachPendingTxn(cb func(id int64, txn Transaction) error) error {
|
|
|
|
arr, err := adt0.AsMap(s.store, s.State.PendingTxns)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
var out msig0.Transaction
|
|
|
|
return arr.ForEach(&out, func(key string) error {
|
|
|
|
txid, n := binary.Varint([]byte(key))
|
|
|
|
if n <= 0 {
|
|
|
|
return xerrors.Errorf("invalid pending transaction key: %v", key)
|
|
|
|
}
|
|
|
|
return cb(txid, (Transaction)(out))
|
|
|
|
})
|
|
|
|
}
|