2021-01-16 07:00:14 +00:00
|
|
|
package multisig
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/binary"
|
|
|
|
|
|
|
|
adt3 "github.com/filecoin-project/specs-actors/v3/actors/util/adt"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
cbg "github.com/whyrusleeping/cbor-gen"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
|
|
|
|
|
|
|
builtin3 "github.com/filecoin-project/specs-actors/v3/actors/builtin"
|
2021-04-30 15:51:24 +00:00
|
|
|
|
2021-01-16 07:00:14 +00:00
|
|
|
msig3 "github.com/filecoin-project/specs-actors/v3/actors/builtin/multisig"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ State = (*state3)(nil)
|
|
|
|
|
|
|
|
func load3(store adt.Store, root cid.Cid) (State, error) {
|
|
|
|
out := state3{store: store}
|
|
|
|
err := store.Get(store.Context(), root, &out)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &out, nil
|
|
|
|
}
|
|
|
|
|
2021-05-15 01:11:23 +00:00
|
|
|
func make3(store adt.Store, signers []address.Address, threshold uint64, startEpoch abi.ChainEpoch, unlockDuration abi.ChainEpoch, initialBalance abi.TokenAmount) (State, error) {
|
|
|
|
out := state3{store: store}
|
|
|
|
out.State = msig3.State{}
|
|
|
|
out.State.Signers = signers
|
|
|
|
out.State.NumApprovalsThreshold = threshold
|
|
|
|
out.State.StartEpoch = startEpoch
|
|
|
|
out.State.UnlockDuration = unlockDuration
|
|
|
|
out.State.InitialBalance = initialBalance
|
|
|
|
|
|
|
|
em, err := adt3.StoreEmptyMap(store, builtin3.DefaultHamtBitwidth)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
out.State.PendingTxns = em
|
|
|
|
|
|
|
|
return &out, nil
|
|
|
|
}
|
|
|
|
|
2021-01-16 07:00:14 +00:00
|
|
|
type state3 struct {
|
|
|
|
msig3.State
|
|
|
|
store adt.Store
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) LockedBalance(currEpoch abi.ChainEpoch) (abi.TokenAmount, error) {
|
|
|
|
return s.State.AmountLocked(currEpoch - s.State.StartEpoch), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) StartEpoch() (abi.ChainEpoch, error) {
|
|
|
|
return s.State.StartEpoch, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) UnlockDuration() (abi.ChainEpoch, error) {
|
|
|
|
return s.State.UnlockDuration, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) InitialBalance() (abi.TokenAmount, error) {
|
|
|
|
return s.State.InitialBalance, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) Threshold() (uint64, error) {
|
|
|
|
return s.State.NumApprovalsThreshold, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) Signers() ([]address.Address, error) {
|
|
|
|
return s.State.Signers, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) ForEachPendingTxn(cb func(id int64, txn Transaction) error) error {
|
|
|
|
arr, err := adt3.AsMap(s.store, s.State.PendingTxns, builtin3.DefaultHamtBitwidth)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
var out msig3.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)
|
|
|
|
}
|
2021-03-26 00:17:46 +00:00
|
|
|
return cb(txid, (Transaction)(out)) //nolint:unconvert
|
2021-01-16 07:00:14 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) PendingTxnChanged(other State) (bool, error) {
|
2021-04-27 18:48:32 +00:00
|
|
|
other3, ok := other.(*state3)
|
2021-01-16 07:00:14 +00:00
|
|
|
if !ok {
|
|
|
|
// treat an upgrade as a change, always
|
|
|
|
return true, nil
|
|
|
|
}
|
2021-04-27 18:48:32 +00:00
|
|
|
return !s.State.PendingTxns.Equals(other3.PendingTxns), nil
|
2021-01-16 07:00:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) transactions() (adt.Map, error) {
|
|
|
|
return adt3.AsMap(s.store, s.PendingTxns, builtin3.DefaultHamtBitwidth)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *state3) decodeTransaction(val *cbg.Deferred) (Transaction, error) {
|
|
|
|
var tx msig3.Transaction
|
|
|
|
if err := tx.UnmarshalCBOR(bytes.NewReader(val.Raw)); err != nil {
|
|
|
|
return Transaction{}, err
|
|
|
|
}
|
|
|
|
return tx, nil
|
|
|
|
}
|
2021-05-15 01:11:23 +00:00
|
|
|
|
|
|
|
func (s *state3) GetState() interface{} {
|
|
|
|
return &s.State
|
|
|
|
}
|