update docs

This commit is contained in:
Steven Allen 2020-10-26 10:46:41 -07:00
parent a47b063a24
commit b78b9a441b

View File

@ -3243,7 +3243,7 @@ Response:
## State ## State
The State methods are used to query, inspect, and interact with chain state. The State methods are used to query, inspect, and interact with chain state.
Most methods take a TipSetKey as a parameter. The state looked up is the state at that tipset. Most methods take a TipSetKey as a parameter. The state looked up is the parent state of the tipset.
A nil TipSetKey can be provided as a param, this will cause the heaviest tipset in the chain to be used. A nil TipSetKey can be provided as a param, this will cause the heaviest tipset in the chain to be used.
@ -3296,6 +3296,10 @@ Response: `null`
### StateCall ### StateCall
StateCall runs the given message and returns its result without any persisted changes. StateCall runs the given message and returns its result without any persisted changes.
StateCall applies the message to the tipset's parent state. The
message is not applied on-top-of the messages in the passed-in
tipset.
Perms: read Perms: read