Versions in this module Expand all Collapse all v0 v0.9.2 May 24, 2021 Changes in this version + type ABCIApp struct + App abci.Application + func (a ABCIApp) ABCIInfo() (*ctypes.ResultABCIInfo, error) + func (a ABCIApp) ABCIQuery(path string, data cmn.HexBytes) (*ctypes.ResultABCIQuery, error) + func (a ABCIApp) ABCIQueryWithOptions(path string, data cmn.HexBytes, opts client.ABCIQueryOptions) (*ctypes.ResultABCIQuery, error) + func (a ABCIApp) BroadcastTxAsync(tx types.Tx) (*ctypes.ResultBroadcastTx, error) + func (a ABCIApp) BroadcastTxCommit(tx types.Tx) (*ctypes.ResultBroadcastTxCommit, error) + func (a ABCIApp) BroadcastTxSync(tx types.Tx) (*ctypes.ResultBroadcastTx, error) + type ABCIMock struct + Broadcast Call + BroadcastCommit Call + Info Call + Query Call + func (m ABCIMock) ABCIInfo() (*ctypes.ResultABCIInfo, error) + func (m ABCIMock) ABCIQuery(path string, data cmn.HexBytes) (*ctypes.ResultABCIQuery, error) + func (m ABCIMock) ABCIQueryWithOptions(path string, data cmn.HexBytes, opts client.ABCIQueryOptions) (*ctypes.ResultABCIQuery, error) + func (m ABCIMock) BroadcastTxAsync(tx types.Tx) (*ctypes.ResultBroadcastTx, error) + func (m ABCIMock) BroadcastTxCommit(tx types.Tx) (*ctypes.ResultBroadcastTxCommit, error) + func (m ABCIMock) BroadcastTxSync(tx types.Tx) (*ctypes.ResultBroadcastTx, error) + type ABCIRecorder struct + Calls []Call + Client client.ABCIClient + func NewABCIRecorder(client client.ABCIClient) *ABCIRecorder + func (r *ABCIRecorder) ABCIInfo() (*ctypes.ResultABCIInfo, error) + func (r *ABCIRecorder) ABCIQuery(path string, data cmn.HexBytes) (*ctypes.ResultABCIQuery, error) + func (r *ABCIRecorder) ABCIQueryWithOptions(path string, data cmn.HexBytes, opts client.ABCIQueryOptions) (*ctypes.ResultABCIQuery, error) + func (r *ABCIRecorder) BroadcastTxAsync(tx types.Tx) (*ctypes.ResultBroadcastTx, error) + func (r *ABCIRecorder) BroadcastTxCommit(tx types.Tx) (*ctypes.ResultBroadcastTxCommit, error) + func (r *ABCIRecorder) BroadcastTxSync(tx types.Tx) (*ctypes.ResultBroadcastTx, error) + type Call struct + Args interface{} + Error error + Name string + Response interface{} + func (c Call) GetResponse(args interface{}) (interface{}, error) + type Client struct + func (c Client) ABCIInfo() (*ctypes.ResultABCIInfo, error) + func (c Client) ABCIQuery(path string, data cmn.HexBytes) (*ctypes.ResultABCIQuery, error) + func (c Client) ABCIQueryWithOptions(path string, data cmn.HexBytes, opts client.ABCIQueryOptions) (*ctypes.ResultABCIQuery, error) + func (c Client) Block(height *int64) (*ctypes.ResultBlock, error) + func (c Client) BlockchainInfo(minHeight, maxHeight int64) (*ctypes.ResultBlockchainInfo, error) + func (c Client) BroadcastEvidence(ev types.Evidence) (*ctypes.ResultBroadcastEvidence, error) + func (c Client) BroadcastTxAsync(tx types.Tx) (*ctypes.ResultBroadcastTx, error) + func (c Client) BroadcastTxCommit(tx types.Tx) (*ctypes.ResultBroadcastTxCommit, error) + func (c Client) BroadcastTxSync(tx types.Tx) (*ctypes.ResultBroadcastTx, error) + func (c Client) Commit(height *int64) (*ctypes.ResultCommit, error) + func (c Client) ConsensusState() (*ctypes.ResultConsensusState, error) + func (c Client) DialPeers(peers []string, persistent bool) (*ctypes.ResultDialPeers, error) + func (c Client) DialSeeds(seeds []string) (*ctypes.ResultDialSeeds, error) + func (c Client) DumpConsensusState() (*ctypes.ResultDumpConsensusState, error) + func (c Client) Genesis() (*ctypes.ResultGenesis, error) + func (c Client) Health() (*ctypes.ResultHealth, error) + func (c Client) NetInfo() (*ctypes.ResultNetInfo, error) + func (c Client) Status() (*ctypes.ResultStatus, error) + func (c Client) Validators(height *int64) (*ctypes.ResultValidators, error) + type QueryArgs struct + Data cmn.HexBytes + Height int64 + Path string + Prove bool + type StatusMock struct + func (m *StatusMock) Status() (*ctypes.ResultStatus, error) + type StatusRecorder struct + Calls []Call + Client client.StatusClient + func NewStatusRecorder(client client.StatusClient) *StatusRecorder + func (r *StatusRecorder) Status() (*ctypes.ResultStatus, error)