Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IndexQueryMode ¶
type IndexQueryMode int
const ( // IndexQueryModeLocalOnly executes scripts and gets accounts using only local storage IndexQueryModeLocalOnly IndexQueryMode = iota + 1 // IndexQueryModeExecutionNodesOnly executes scripts and gets accounts using only // execution nodes IndexQueryModeExecutionNodesOnly // IndexQueryModeFailover executes scripts and gets accounts using local storage first, // then falls back to execution nodes if data is not available for the height or if request // failed due to a non-user error. IndexQueryModeFailover // IndexQueryModeCompare executes scripts and gets accounts using both local storage and // execution nodes and compares the results. The execution node result is always returned. IndexQueryModeCompare )
func ParseIndexQueryMode ¶
func ParseIndexQueryMode(s string) (IndexQueryMode, error)
func (IndexQueryMode) String ¶
func (m IndexQueryMode) String() string
Click to show internal directories.
Click to hide internal directories.