api: Better StateCompute docs
This commit is contained in:
parent
82e019bd36
commit
da10ef2e36
@ -520,7 +520,7 @@ type FullNode interface {
|
|||||||
// NOTE: If the requested message was replaced, this method will return the receipt
|
// NOTE: If the requested message was replaced, this method will return the receipt
|
||||||
// for the replacing message - if the caller needs the receipt for exactly the
|
// for the replacing message - if the caller needs the receipt for exactly the
|
||||||
// requested message, use StateSearchMsg().Receipt, and check that MsgLookup.Message
|
// requested message, use StateSearchMsg().Receipt, and check that MsgLookup.Message
|
||||||
// is matching the requseted CID
|
// is matching the requested CID
|
||||||
//
|
//
|
||||||
// DEPRECATED: Use StateSearchMsg, this method won't be supported in v1 API
|
// DEPRECATED: Use StateSearchMsg, this method won't be supported in v1 API
|
||||||
StateGetReceipt(context.Context, cid.Cid, types.TipSetKey) (*types.MessageReceipt, error)
|
StateGetReceipt(context.Context, cid.Cid, types.TipSetKey) (*types.MessageReceipt, error)
|
||||||
@ -528,7 +528,37 @@ type FullNode interface {
|
|||||||
StateMinerSectorCount(context.Context, address.Address, types.TipSetKey) (MinerSectors, error)
|
StateMinerSectorCount(context.Context, address.Address, types.TipSetKey) (MinerSectors, error)
|
||||||
// StateCompute is a flexible command that applies the given messages on the given tipset.
|
// StateCompute is a flexible command that applies the given messages on the given tipset.
|
||||||
// The messages are run as though the VM were at the provided height.
|
// The messages are run as though the VM were at the provided height.
|
||||||
StateCompute(context.Context, abi.ChainEpoch, []*types.Message, types.TipSetKey) (*ComputeStateOutput, error)
|
//
|
||||||
|
// When called, StateCompute will:
|
||||||
|
// - Load the provided tipset, or use the current chain head if not provided
|
||||||
|
// - Compute the tipset state of the provided tipset on top of the parent state
|
||||||
|
// - (note that this step runs before vmheight is applied to the execution)
|
||||||
|
// - Execute state upgrade if any were scheduled at the epoch, or in null
|
||||||
|
// blocks preceding the tipset
|
||||||
|
// - Call the cron actor on null blocks preceding the tipset
|
||||||
|
// - For each block in the tipset
|
||||||
|
// - Apply messages in blocks in the specified
|
||||||
|
// - Award block reward by calling the reward actor
|
||||||
|
// - Call the cron actor for the current epoch
|
||||||
|
// - If the specified vmheight is higher than the current epoch, apply any
|
||||||
|
// needed state upgrades to the state
|
||||||
|
// - Apply the specified messages to the state
|
||||||
|
//
|
||||||
|
// The vmheight parameter sets VM execution epoch, and can be used to simulate
|
||||||
|
// message execution in different network versions. If the specified vmheight
|
||||||
|
// epoch is higher than the epoch of the specified tipset, any state upgrades
|
||||||
|
// until the vmheight will be executed on the state before applying messages
|
||||||
|
// specified by the user.
|
||||||
|
//
|
||||||
|
// Note that the initial tipset state computation is not affected by the
|
||||||
|
// vmheight parameter - only the messages in the `apply` set are
|
||||||
|
//
|
||||||
|
// If the caller wants to simply compute the state, vmheight should be set to
|
||||||
|
// the epoch of the specified tipset.
|
||||||
|
//
|
||||||
|
// Messages in the `apply` parameter must have the correct nonces, and gas
|
||||||
|
// values set.
|
||||||
|
StateCompute(ctx context.Context, vmheight abi.ChainEpoch, apply []*types.Message, tsk types.TipSetKey) (*ComputeStateOutput, error)
|
||||||
// StateVerifierStatus returns the data cap for the given address.
|
// StateVerifierStatus returns the data cap for the given address.
|
||||||
// Returns nil if there is no entry in the data cap table for the
|
// Returns nil if there is no entry in the data cap table for the
|
||||||
// address.
|
// address.
|
||||||
|
@ -3577,6 +3577,36 @@ Response: `"0"`
|
|||||||
StateCompute is a flexible command that applies the given messages on the given tipset.
|
StateCompute is a flexible command that applies the given messages on the given tipset.
|
||||||
The messages are run as though the VM were at the provided height.
|
The messages are run as though the VM were at the provided height.
|
||||||
|
|
||||||
|
When called, StateCompute will:
|
||||||
|
- Load the provided tipset, or use the current chain head if not provided
|
||||||
|
- Compute the tipset state of the provided tipset on top of the parent state
|
||||||
|
- (note that this step runs before vmheight is applied to the execution)
|
||||||
|
- Execute state upgrade if any were scheduled at the epoch, or in null
|
||||||
|
blocks preceding the tipset
|
||||||
|
- Call the cron actor on null blocks preceding the tipset
|
||||||
|
- For each block in the tipset
|
||||||
|
- Apply messages in blocks in the specified
|
||||||
|
- Award block reward by calling the reward actor
|
||||||
|
- Call the cron actor for the current epoch
|
||||||
|
- If the specified vmheight is higher than the current epoch, apply any
|
||||||
|
needed state upgrades to the state
|
||||||
|
- Apply the specified messages to the state
|
||||||
|
|
||||||
|
The vmheight parameter sets VM execution epoch, and can be used to simulate
|
||||||
|
message execution in different network versions. If the specified vmheight
|
||||||
|
epoch is higher than the epoch of the specified tipset, any state upgrades
|
||||||
|
until the vmheight will be executed on the state before applying messages
|
||||||
|
specified by the user.
|
||||||
|
|
||||||
|
Note that the initial tipset state computation is not affected by the
|
||||||
|
vmheight parameter - only the messages in the `apply` set are
|
||||||
|
|
||||||
|
If the caller wants to simply compute the state, vmheight should be set to
|
||||||
|
the epoch of the specified tipset.
|
||||||
|
|
||||||
|
Messages in the `apply` parameter must have the correct nonces, and gas
|
||||||
|
values set.
|
||||||
|
|
||||||
|
|
||||||
Perms: read
|
Perms: read
|
||||||
|
|
||||||
@ -3704,7 +3734,7 @@ matching gas-repriced replacing message
|
|||||||
NOTE: If the requested message was replaced, this method will return the receipt
|
NOTE: If the requested message was replaced, this method will return the receipt
|
||||||
for the replacing message - if the caller needs the receipt for exactly the
|
for the replacing message - if the caller needs the receipt for exactly the
|
||||||
requested message, use StateSearchMsg().Receipt, and check that MsgLookup.Message
|
requested message, use StateSearchMsg().Receipt, and check that MsgLookup.Message
|
||||||
is matching the requseted CID
|
is matching the requested CID
|
||||||
|
|
||||||
DEPRECATED: Use StateSearchMsg, this method won't be supported in v1 API
|
DEPRECATED: Use StateSearchMsg, this method won't be supported in v1 API
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user