Documentation ¶
Overview ¶
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Code generated by: `make actors-gen`. DO NOT EDIT.
Index ¶
- Variables
- func AllCodes() []cid.Cid
- func NewTransactionDiffContainer(pre, cur State) *transactionDiffContainer
- func VersionCodes() map[actorstypes.Version]cid.Cid
- type ApproveReturn
- type PendingTransactionChanges
- type ProposalHashData
- type ProposeParams
- type ProposeReturn
- type State
- type Transaction
- type TransactionChange
- type TransactionModification
- type TxnIDParams
Constants ¶
This section is empty.
Variables ¶
var Methods = builtintypes.MethodsMultisig
Functions ¶
func NewTransactionDiffContainer ¶
func NewTransactionDiffContainer(pre, cur State) *transactionDiffContainer
func VersionCodes ¶ added in v0.11.0
func VersionCodes() map[actorstypes.Version]cid.Cid
Types ¶
type ApproveReturn ¶ added in v0.8.4
type ApproveReturn = msig15.ApproveReturn
type PendingTransactionChanges ¶
type PendingTransactionChanges struct { Added []TransactionChange Modified []TransactionModification Removed []TransactionChange }
func DiffPendingTransactions ¶
type ProposalHashData ¶
type ProposalHashData = msig15.ProposalHashData
these types are the same between v0 and v6
type ProposeParams ¶
type ProposeParams = msig15.ProposeParams
type ProposeReturn ¶
type ProposeReturn = msig15.ProposeReturn
type State ¶
type State interface { cbor.Marshaler Code() cid.Cid ActorKey() string ActorVersion() actorstypes.Version LockedBalance(epoch abi.ChainEpoch) (abi.TokenAmount, error) StartEpoch() (abi.ChainEpoch, error) UnlockDuration() (abi.ChainEpoch, error) InitialBalance() (abi.TokenAmount, error) Threshold() (uint64, error) Signers() ([]address.Address, error) ForEachPendingTxn(func(id int64, txn Transaction) error) error PendingTxnChanged(State) (bool, error) PendingTransactionsMap() (adt.Map, error) PendingTransactionsMapBitWidth() int PendingTransactionsMapHashFunction() func(input []byte) []byte // contains filtered or unexported methods }
type Transaction ¶
type Transaction = msig15.Transaction
type TransactionChange ¶
type TransactionChange struct { TxID int64 Tx Transaction }
type TransactionModification ¶
type TransactionModification struct { TxID int64 From Transaction To Transaction }
type TxnIDParams ¶ added in v0.8.4
type TxnIDParams = msig15.TxnIDParams