MCPcopy Create free account
hub / github.com/DeAI-Artist/Linkis / CheckTxSync

Method CheckTxSync

abci/client/socket_client.go:329–336  ·  view source on GitHub ↗
(req types.RequestCheckTx)

Source from the content-addressed store, hash-verified

327}
328
329func (cli *socketClient) CheckTxSync(req types.RequestCheckTx) (*types.ResponseCheckTx, error) {
330 reqres := cli.queueRequest(types.ToRequestCheckTx(req))
331 if err := cli.FlushSync(); err != nil {
332 return nil, err
333 }
334
335 return reqres.Response.GetCheckTx(), cli.Error()
336}
337
338func (cli *socketClient) QuerySync(req types.RequestQuery) (*types.ResponseQuery, error) {
339 reqres := cli.queueRequest(types.ToRequestQuery(req))

Callers

nothing calls this directly

Calls 5

queueRequestMethod · 0.95
FlushSyncMethod · 0.95
ErrorMethod · 0.95
ToRequestCheckTxFunction · 0.92
GetCheckTxMethod · 0.45

Tested by

no test coverage detected