You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

719 lines
18 KiB

  1. // Code generated by mockery. DO NOT EDIT.
  2. package mocks
  3. import (
  4. context "context"
  5. abciclient "github.com/tendermint/tendermint/abci/client"
  6. mock "github.com/stretchr/testify/mock"
  7. types "github.com/tendermint/tendermint/abci/types"
  8. )
  9. // Client is an autogenerated mock type for the Client type
  10. type Client struct {
  11. mock.Mock
  12. }
  13. // ApplySnapshotChunkAsync provides a mock function with given fields: _a0, _a1
  14. func (_m *Client) ApplySnapshotChunkAsync(_a0 context.Context, _a1 types.RequestApplySnapshotChunk) (*abciclient.ReqRes, error) {
  15. ret := _m.Called(_a0, _a1)
  16. var r0 *abciclient.ReqRes
  17. if rf, ok := ret.Get(0).(func(context.Context, types.RequestApplySnapshotChunk) *abciclient.ReqRes); ok {
  18. r0 = rf(_a0, _a1)
  19. } else {
  20. if ret.Get(0) != nil {
  21. r0 = ret.Get(0).(*abciclient.ReqRes)
  22. }
  23. }
  24. var r1 error
  25. if rf, ok := ret.Get(1).(func(context.Context, types.RequestApplySnapshotChunk) error); ok {
  26. r1 = rf(_a0, _a1)
  27. } else {
  28. r1 = ret.Error(1)
  29. }
  30. return r0, r1
  31. }
  32. // ApplySnapshotChunkSync provides a mock function with given fields: _a0, _a1
  33. func (_m *Client) ApplySnapshotChunkSync(_a0 context.Context, _a1 types.RequestApplySnapshotChunk) (*types.ResponseApplySnapshotChunk, error) {
  34. ret := _m.Called(_a0, _a1)
  35. var r0 *types.ResponseApplySnapshotChunk
  36. if rf, ok := ret.Get(0).(func(context.Context, types.RequestApplySnapshotChunk) *types.ResponseApplySnapshotChunk); ok {
  37. r0 = rf(_a0, _a1)
  38. } else {
  39. if ret.Get(0) != nil {
  40. r0 = ret.Get(0).(*types.ResponseApplySnapshotChunk)
  41. }
  42. }
  43. var r1 error
  44. if rf, ok := ret.Get(1).(func(context.Context, types.RequestApplySnapshotChunk) error); ok {
  45. r1 = rf(_a0, _a1)
  46. } else {
  47. r1 = ret.Error(1)
  48. }
  49. return r0, r1
  50. }
  51. // BeginBlockAsync provides a mock function with given fields: _a0, _a1
  52. func (_m *Client) BeginBlockAsync(_a0 context.Context, _a1 types.RequestBeginBlock) (*abciclient.ReqRes, error) {
  53. ret := _m.Called(_a0, _a1)
  54. var r0 *abciclient.ReqRes
  55. if rf, ok := ret.Get(0).(func(context.Context, types.RequestBeginBlock) *abciclient.ReqRes); ok {
  56. r0 = rf(_a0, _a1)
  57. } else {
  58. if ret.Get(0) != nil {
  59. r0 = ret.Get(0).(*abciclient.ReqRes)
  60. }
  61. }
  62. var r1 error
  63. if rf, ok := ret.Get(1).(func(context.Context, types.RequestBeginBlock) error); ok {
  64. r1 = rf(_a0, _a1)
  65. } else {
  66. r1 = ret.Error(1)
  67. }
  68. return r0, r1
  69. }
  70. // BeginBlockSync provides a mock function with given fields: _a0, _a1
  71. func (_m *Client) BeginBlockSync(_a0 context.Context, _a1 types.RequestBeginBlock) (*types.ResponseBeginBlock, error) {
  72. ret := _m.Called(_a0, _a1)
  73. var r0 *types.ResponseBeginBlock
  74. if rf, ok := ret.Get(0).(func(context.Context, types.RequestBeginBlock) *types.ResponseBeginBlock); ok {
  75. r0 = rf(_a0, _a1)
  76. } else {
  77. if ret.Get(0) != nil {
  78. r0 = ret.Get(0).(*types.ResponseBeginBlock)
  79. }
  80. }
  81. var r1 error
  82. if rf, ok := ret.Get(1).(func(context.Context, types.RequestBeginBlock) error); ok {
  83. r1 = rf(_a0, _a1)
  84. } else {
  85. r1 = ret.Error(1)
  86. }
  87. return r0, r1
  88. }
  89. // CheckTxAsync provides a mock function with given fields: _a0, _a1
  90. func (_m *Client) CheckTxAsync(_a0 context.Context, _a1 types.RequestCheckTx) (*abciclient.ReqRes, error) {
  91. ret := _m.Called(_a0, _a1)
  92. var r0 *abciclient.ReqRes
  93. if rf, ok := ret.Get(0).(func(context.Context, types.RequestCheckTx) *abciclient.ReqRes); ok {
  94. r0 = rf(_a0, _a1)
  95. } else {
  96. if ret.Get(0) != nil {
  97. r0 = ret.Get(0).(*abciclient.ReqRes)
  98. }
  99. }
  100. var r1 error
  101. if rf, ok := ret.Get(1).(func(context.Context, types.RequestCheckTx) error); ok {
  102. r1 = rf(_a0, _a1)
  103. } else {
  104. r1 = ret.Error(1)
  105. }
  106. return r0, r1
  107. }
  108. // CheckTxSync provides a mock function with given fields: _a0, _a1
  109. func (_m *Client) CheckTxSync(_a0 context.Context, _a1 types.RequestCheckTx) (*types.ResponseCheckTx, error) {
  110. ret := _m.Called(_a0, _a1)
  111. var r0 *types.ResponseCheckTx
  112. if rf, ok := ret.Get(0).(func(context.Context, types.RequestCheckTx) *types.ResponseCheckTx); ok {
  113. r0 = rf(_a0, _a1)
  114. } else {
  115. if ret.Get(0) != nil {
  116. r0 = ret.Get(0).(*types.ResponseCheckTx)
  117. }
  118. }
  119. var r1 error
  120. if rf, ok := ret.Get(1).(func(context.Context, types.RequestCheckTx) error); ok {
  121. r1 = rf(_a0, _a1)
  122. } else {
  123. r1 = ret.Error(1)
  124. }
  125. return r0, r1
  126. }
  127. // CommitAsync provides a mock function with given fields: _a0
  128. func (_m *Client) CommitAsync(_a0 context.Context) (*abciclient.ReqRes, error) {
  129. ret := _m.Called(_a0)
  130. var r0 *abciclient.ReqRes
  131. if rf, ok := ret.Get(0).(func(context.Context) *abciclient.ReqRes); ok {
  132. r0 = rf(_a0)
  133. } else {
  134. if ret.Get(0) != nil {
  135. r0 = ret.Get(0).(*abciclient.ReqRes)
  136. }
  137. }
  138. var r1 error
  139. if rf, ok := ret.Get(1).(func(context.Context) error); ok {
  140. r1 = rf(_a0)
  141. } else {
  142. r1 = ret.Error(1)
  143. }
  144. return r0, r1
  145. }
  146. // CommitSync provides a mock function with given fields: _a0
  147. func (_m *Client) CommitSync(_a0 context.Context) (*types.ResponseCommit, error) {
  148. ret := _m.Called(_a0)
  149. var r0 *types.ResponseCommit
  150. if rf, ok := ret.Get(0).(func(context.Context) *types.ResponseCommit); ok {
  151. r0 = rf(_a0)
  152. } else {
  153. if ret.Get(0) != nil {
  154. r0 = ret.Get(0).(*types.ResponseCommit)
  155. }
  156. }
  157. var r1 error
  158. if rf, ok := ret.Get(1).(func(context.Context) error); ok {
  159. r1 = rf(_a0)
  160. } else {
  161. r1 = ret.Error(1)
  162. }
  163. return r0, r1
  164. }
  165. // DeliverTxAsync provides a mock function with given fields: _a0, _a1
  166. func (_m *Client) DeliverTxAsync(_a0 context.Context, _a1 types.RequestDeliverTx) (*abciclient.ReqRes, error) {
  167. ret := _m.Called(_a0, _a1)
  168. var r0 *abciclient.ReqRes
  169. if rf, ok := ret.Get(0).(func(context.Context, types.RequestDeliverTx) *abciclient.ReqRes); ok {
  170. r0 = rf(_a0, _a1)
  171. } else {
  172. if ret.Get(0) != nil {
  173. r0 = ret.Get(0).(*abciclient.ReqRes)
  174. }
  175. }
  176. var r1 error
  177. if rf, ok := ret.Get(1).(func(context.Context, types.RequestDeliverTx) error); ok {
  178. r1 = rf(_a0, _a1)
  179. } else {
  180. r1 = ret.Error(1)
  181. }
  182. return r0, r1
  183. }
  184. // DeliverTxSync provides a mock function with given fields: _a0, _a1
  185. func (_m *Client) DeliverTxSync(_a0 context.Context, _a1 types.RequestDeliverTx) (*types.ResponseDeliverTx, error) {
  186. ret := _m.Called(_a0, _a1)
  187. var r0 *types.ResponseDeliverTx
  188. if rf, ok := ret.Get(0).(func(context.Context, types.RequestDeliverTx) *types.ResponseDeliverTx); ok {
  189. r0 = rf(_a0, _a1)
  190. } else {
  191. if ret.Get(0) != nil {
  192. r0 = ret.Get(0).(*types.ResponseDeliverTx)
  193. }
  194. }
  195. var r1 error
  196. if rf, ok := ret.Get(1).(func(context.Context, types.RequestDeliverTx) error); ok {
  197. r1 = rf(_a0, _a1)
  198. } else {
  199. r1 = ret.Error(1)
  200. }
  201. return r0, r1
  202. }
  203. // EchoAsync provides a mock function with given fields: ctx, msg
  204. func (_m *Client) EchoAsync(ctx context.Context, msg string) (*abciclient.ReqRes, error) {
  205. ret := _m.Called(ctx, msg)
  206. var r0 *abciclient.ReqRes
  207. if rf, ok := ret.Get(0).(func(context.Context, string) *abciclient.ReqRes); ok {
  208. r0 = rf(ctx, msg)
  209. } else {
  210. if ret.Get(0) != nil {
  211. r0 = ret.Get(0).(*abciclient.ReqRes)
  212. }
  213. }
  214. var r1 error
  215. if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
  216. r1 = rf(ctx, msg)
  217. } else {
  218. r1 = ret.Error(1)
  219. }
  220. return r0, r1
  221. }
  222. // EchoSync provides a mock function with given fields: ctx, msg
  223. func (_m *Client) EchoSync(ctx context.Context, msg string) (*types.ResponseEcho, error) {
  224. ret := _m.Called(ctx, msg)
  225. var r0 *types.ResponseEcho
  226. if rf, ok := ret.Get(0).(func(context.Context, string) *types.ResponseEcho); ok {
  227. r0 = rf(ctx, msg)
  228. } else {
  229. if ret.Get(0) != nil {
  230. r0 = ret.Get(0).(*types.ResponseEcho)
  231. }
  232. }
  233. var r1 error
  234. if rf, ok := ret.Get(1).(func(context.Context, string) error); ok {
  235. r1 = rf(ctx, msg)
  236. } else {
  237. r1 = ret.Error(1)
  238. }
  239. return r0, r1
  240. }
  241. // EndBlockAsync provides a mock function with given fields: _a0, _a1
  242. func (_m *Client) EndBlockAsync(_a0 context.Context, _a1 types.RequestEndBlock) (*abciclient.ReqRes, error) {
  243. ret := _m.Called(_a0, _a1)
  244. var r0 *abciclient.ReqRes
  245. if rf, ok := ret.Get(0).(func(context.Context, types.RequestEndBlock) *abciclient.ReqRes); ok {
  246. r0 = rf(_a0, _a1)
  247. } else {
  248. if ret.Get(0) != nil {
  249. r0 = ret.Get(0).(*abciclient.ReqRes)
  250. }
  251. }
  252. var r1 error
  253. if rf, ok := ret.Get(1).(func(context.Context, types.RequestEndBlock) error); ok {
  254. r1 = rf(_a0, _a1)
  255. } else {
  256. r1 = ret.Error(1)
  257. }
  258. return r0, r1
  259. }
  260. // EndBlockSync provides a mock function with given fields: _a0, _a1
  261. func (_m *Client) EndBlockSync(_a0 context.Context, _a1 types.RequestEndBlock) (*types.ResponseEndBlock, error) {
  262. ret := _m.Called(_a0, _a1)
  263. var r0 *types.ResponseEndBlock
  264. if rf, ok := ret.Get(0).(func(context.Context, types.RequestEndBlock) *types.ResponseEndBlock); ok {
  265. r0 = rf(_a0, _a1)
  266. } else {
  267. if ret.Get(0) != nil {
  268. r0 = ret.Get(0).(*types.ResponseEndBlock)
  269. }
  270. }
  271. var r1 error
  272. if rf, ok := ret.Get(1).(func(context.Context, types.RequestEndBlock) error); ok {
  273. r1 = rf(_a0, _a1)
  274. } else {
  275. r1 = ret.Error(1)
  276. }
  277. return r0, r1
  278. }
  279. // Error provides a mock function with given fields:
  280. func (_m *Client) Error() error {
  281. ret := _m.Called()
  282. var r0 error
  283. if rf, ok := ret.Get(0).(func() error); ok {
  284. r0 = rf()
  285. } else {
  286. r0 = ret.Error(0)
  287. }
  288. return r0
  289. }
  290. // FlushAsync provides a mock function with given fields: _a0
  291. func (_m *Client) FlushAsync(_a0 context.Context) (*abciclient.ReqRes, error) {
  292. ret := _m.Called(_a0)
  293. var r0 *abciclient.ReqRes
  294. if rf, ok := ret.Get(0).(func(context.Context) *abciclient.ReqRes); ok {
  295. r0 = rf(_a0)
  296. } else {
  297. if ret.Get(0) != nil {
  298. r0 = ret.Get(0).(*abciclient.ReqRes)
  299. }
  300. }
  301. var r1 error
  302. if rf, ok := ret.Get(1).(func(context.Context) error); ok {
  303. r1 = rf(_a0)
  304. } else {
  305. r1 = ret.Error(1)
  306. }
  307. return r0, r1
  308. }
  309. // FlushSync provides a mock function with given fields: _a0
  310. func (_m *Client) FlushSync(_a0 context.Context) error {
  311. ret := _m.Called(_a0)
  312. var r0 error
  313. if rf, ok := ret.Get(0).(func(context.Context) error); ok {
  314. r0 = rf(_a0)
  315. } else {
  316. r0 = ret.Error(0)
  317. }
  318. return r0
  319. }
  320. // InfoAsync provides a mock function with given fields: _a0, _a1
  321. func (_m *Client) InfoAsync(_a0 context.Context, _a1 types.RequestInfo) (*abciclient.ReqRes, error) {
  322. ret := _m.Called(_a0, _a1)
  323. var r0 *abciclient.ReqRes
  324. if rf, ok := ret.Get(0).(func(context.Context, types.RequestInfo) *abciclient.ReqRes); ok {
  325. r0 = rf(_a0, _a1)
  326. } else {
  327. if ret.Get(0) != nil {
  328. r0 = ret.Get(0).(*abciclient.ReqRes)
  329. }
  330. }
  331. var r1 error
  332. if rf, ok := ret.Get(1).(func(context.Context, types.RequestInfo) error); ok {
  333. r1 = rf(_a0, _a1)
  334. } else {
  335. r1 = ret.Error(1)
  336. }
  337. return r0, r1
  338. }
  339. // InfoSync provides a mock function with given fields: _a0, _a1
  340. func (_m *Client) InfoSync(_a0 context.Context, _a1 types.RequestInfo) (*types.ResponseInfo, error) {
  341. ret := _m.Called(_a0, _a1)
  342. var r0 *types.ResponseInfo
  343. if rf, ok := ret.Get(0).(func(context.Context, types.RequestInfo) *types.ResponseInfo); ok {
  344. r0 = rf(_a0, _a1)
  345. } else {
  346. if ret.Get(0) != nil {
  347. r0 = ret.Get(0).(*types.ResponseInfo)
  348. }
  349. }
  350. var r1 error
  351. if rf, ok := ret.Get(1).(func(context.Context, types.RequestInfo) error); ok {
  352. r1 = rf(_a0, _a1)
  353. } else {
  354. r1 = ret.Error(1)
  355. }
  356. return r0, r1
  357. }
  358. // InitChainAsync provides a mock function with given fields: _a0, _a1
  359. func (_m *Client) InitChainAsync(_a0 context.Context, _a1 types.RequestInitChain) (*abciclient.ReqRes, error) {
  360. ret := _m.Called(_a0, _a1)
  361. var r0 *abciclient.ReqRes
  362. if rf, ok := ret.Get(0).(func(context.Context, types.RequestInitChain) *abciclient.ReqRes); ok {
  363. r0 = rf(_a0, _a1)
  364. } else {
  365. if ret.Get(0) != nil {
  366. r0 = ret.Get(0).(*abciclient.ReqRes)
  367. }
  368. }
  369. var r1 error
  370. if rf, ok := ret.Get(1).(func(context.Context, types.RequestInitChain) error); ok {
  371. r1 = rf(_a0, _a1)
  372. } else {
  373. r1 = ret.Error(1)
  374. }
  375. return r0, r1
  376. }
  377. // InitChainSync provides a mock function with given fields: _a0, _a1
  378. func (_m *Client) InitChainSync(_a0 context.Context, _a1 types.RequestInitChain) (*types.ResponseInitChain, error) {
  379. ret := _m.Called(_a0, _a1)
  380. var r0 *types.ResponseInitChain
  381. if rf, ok := ret.Get(0).(func(context.Context, types.RequestInitChain) *types.ResponseInitChain); ok {
  382. r0 = rf(_a0, _a1)
  383. } else {
  384. if ret.Get(0) != nil {
  385. r0 = ret.Get(0).(*types.ResponseInitChain)
  386. }
  387. }
  388. var r1 error
  389. if rf, ok := ret.Get(1).(func(context.Context, types.RequestInitChain) error); ok {
  390. r1 = rf(_a0, _a1)
  391. } else {
  392. r1 = ret.Error(1)
  393. }
  394. return r0, r1
  395. }
  396. // IsRunning provides a mock function with given fields:
  397. func (_m *Client) IsRunning() bool {
  398. ret := _m.Called()
  399. var r0 bool
  400. if rf, ok := ret.Get(0).(func() bool); ok {
  401. r0 = rf()
  402. } else {
  403. r0 = ret.Get(0).(bool)
  404. }
  405. return r0
  406. }
  407. // ListSnapshotsAsync provides a mock function with given fields: _a0, _a1
  408. func (_m *Client) ListSnapshotsAsync(_a0 context.Context, _a1 types.RequestListSnapshots) (*abciclient.ReqRes, error) {
  409. ret := _m.Called(_a0, _a1)
  410. var r0 *abciclient.ReqRes
  411. if rf, ok := ret.Get(0).(func(context.Context, types.RequestListSnapshots) *abciclient.ReqRes); ok {
  412. r0 = rf(_a0, _a1)
  413. } else {
  414. if ret.Get(0) != nil {
  415. r0 = ret.Get(0).(*abciclient.ReqRes)
  416. }
  417. }
  418. var r1 error
  419. if rf, ok := ret.Get(1).(func(context.Context, types.RequestListSnapshots) error); ok {
  420. r1 = rf(_a0, _a1)
  421. } else {
  422. r1 = ret.Error(1)
  423. }
  424. return r0, r1
  425. }
  426. // ListSnapshotsSync provides a mock function with given fields: _a0, _a1
  427. func (_m *Client) ListSnapshotsSync(_a0 context.Context, _a1 types.RequestListSnapshots) (*types.ResponseListSnapshots, error) {
  428. ret := _m.Called(_a0, _a1)
  429. var r0 *types.ResponseListSnapshots
  430. if rf, ok := ret.Get(0).(func(context.Context, types.RequestListSnapshots) *types.ResponseListSnapshots); ok {
  431. r0 = rf(_a0, _a1)
  432. } else {
  433. if ret.Get(0) != nil {
  434. r0 = ret.Get(0).(*types.ResponseListSnapshots)
  435. }
  436. }
  437. var r1 error
  438. if rf, ok := ret.Get(1).(func(context.Context, types.RequestListSnapshots) error); ok {
  439. r1 = rf(_a0, _a1)
  440. } else {
  441. r1 = ret.Error(1)
  442. }
  443. return r0, r1
  444. }
  445. // LoadSnapshotChunkAsync provides a mock function with given fields: _a0, _a1
  446. func (_m *Client) LoadSnapshotChunkAsync(_a0 context.Context, _a1 types.RequestLoadSnapshotChunk) (*abciclient.ReqRes, error) {
  447. ret := _m.Called(_a0, _a1)
  448. var r0 *abciclient.ReqRes
  449. if rf, ok := ret.Get(0).(func(context.Context, types.RequestLoadSnapshotChunk) *abciclient.ReqRes); ok {
  450. r0 = rf(_a0, _a1)
  451. } else {
  452. if ret.Get(0) != nil {
  453. r0 = ret.Get(0).(*abciclient.ReqRes)
  454. }
  455. }
  456. var r1 error
  457. if rf, ok := ret.Get(1).(func(context.Context, types.RequestLoadSnapshotChunk) error); ok {
  458. r1 = rf(_a0, _a1)
  459. } else {
  460. r1 = ret.Error(1)
  461. }
  462. return r0, r1
  463. }
  464. // LoadSnapshotChunkSync provides a mock function with given fields: _a0, _a1
  465. func (_m *Client) LoadSnapshotChunkSync(_a0 context.Context, _a1 types.RequestLoadSnapshotChunk) (*types.ResponseLoadSnapshotChunk, error) {
  466. ret := _m.Called(_a0, _a1)
  467. var r0 *types.ResponseLoadSnapshotChunk
  468. if rf, ok := ret.Get(0).(func(context.Context, types.RequestLoadSnapshotChunk) *types.ResponseLoadSnapshotChunk); ok {
  469. r0 = rf(_a0, _a1)
  470. } else {
  471. if ret.Get(0) != nil {
  472. r0 = ret.Get(0).(*types.ResponseLoadSnapshotChunk)
  473. }
  474. }
  475. var r1 error
  476. if rf, ok := ret.Get(1).(func(context.Context, types.RequestLoadSnapshotChunk) error); ok {
  477. r1 = rf(_a0, _a1)
  478. } else {
  479. r1 = ret.Error(1)
  480. }
  481. return r0, r1
  482. }
  483. // OfferSnapshotAsync provides a mock function with given fields: _a0, _a1
  484. func (_m *Client) OfferSnapshotAsync(_a0 context.Context, _a1 types.RequestOfferSnapshot) (*abciclient.ReqRes, error) {
  485. ret := _m.Called(_a0, _a1)
  486. var r0 *abciclient.ReqRes
  487. if rf, ok := ret.Get(0).(func(context.Context, types.RequestOfferSnapshot) *abciclient.ReqRes); ok {
  488. r0 = rf(_a0, _a1)
  489. } else {
  490. if ret.Get(0) != nil {
  491. r0 = ret.Get(0).(*abciclient.ReqRes)
  492. }
  493. }
  494. var r1 error
  495. if rf, ok := ret.Get(1).(func(context.Context, types.RequestOfferSnapshot) error); ok {
  496. r1 = rf(_a0, _a1)
  497. } else {
  498. r1 = ret.Error(1)
  499. }
  500. return r0, r1
  501. }
  502. // OfferSnapshotSync provides a mock function with given fields: _a0, _a1
  503. func (_m *Client) OfferSnapshotSync(_a0 context.Context, _a1 types.RequestOfferSnapshot) (*types.ResponseOfferSnapshot, error) {
  504. ret := _m.Called(_a0, _a1)
  505. var r0 *types.ResponseOfferSnapshot
  506. if rf, ok := ret.Get(0).(func(context.Context, types.RequestOfferSnapshot) *types.ResponseOfferSnapshot); ok {
  507. r0 = rf(_a0, _a1)
  508. } else {
  509. if ret.Get(0) != nil {
  510. r0 = ret.Get(0).(*types.ResponseOfferSnapshot)
  511. }
  512. }
  513. var r1 error
  514. if rf, ok := ret.Get(1).(func(context.Context, types.RequestOfferSnapshot) error); ok {
  515. r1 = rf(_a0, _a1)
  516. } else {
  517. r1 = ret.Error(1)
  518. }
  519. return r0, r1
  520. }
  521. // QueryAsync provides a mock function with given fields: _a0, _a1
  522. func (_m *Client) QueryAsync(_a0 context.Context, _a1 types.RequestQuery) (*abciclient.ReqRes, error) {
  523. ret := _m.Called(_a0, _a1)
  524. var r0 *abciclient.ReqRes
  525. if rf, ok := ret.Get(0).(func(context.Context, types.RequestQuery) *abciclient.ReqRes); ok {
  526. r0 = rf(_a0, _a1)
  527. } else {
  528. if ret.Get(0) != nil {
  529. r0 = ret.Get(0).(*abciclient.ReqRes)
  530. }
  531. }
  532. var r1 error
  533. if rf, ok := ret.Get(1).(func(context.Context, types.RequestQuery) error); ok {
  534. r1 = rf(_a0, _a1)
  535. } else {
  536. r1 = ret.Error(1)
  537. }
  538. return r0, r1
  539. }
  540. // QuerySync provides a mock function with given fields: _a0, _a1
  541. func (_m *Client) QuerySync(_a0 context.Context, _a1 types.RequestQuery) (*types.ResponseQuery, error) {
  542. ret := _m.Called(_a0, _a1)
  543. var r0 *types.ResponseQuery
  544. if rf, ok := ret.Get(0).(func(context.Context, types.RequestQuery) *types.ResponseQuery); ok {
  545. r0 = rf(_a0, _a1)
  546. } else {
  547. if ret.Get(0) != nil {
  548. r0 = ret.Get(0).(*types.ResponseQuery)
  549. }
  550. }
  551. var r1 error
  552. if rf, ok := ret.Get(1).(func(context.Context, types.RequestQuery) error); ok {
  553. r1 = rf(_a0, _a1)
  554. } else {
  555. r1 = ret.Error(1)
  556. }
  557. return r0, r1
  558. }
  559. // SetResponseCallback provides a mock function with given fields: _a0
  560. func (_m *Client) SetResponseCallback(_a0 abciclient.Callback) {
  561. _m.Called(_a0)
  562. }
  563. // Start provides a mock function with given fields: _a0
  564. func (_m *Client) Start(_a0 context.Context) error {
  565. ret := _m.Called(_a0)
  566. var r0 error
  567. if rf, ok := ret.Get(0).(func(context.Context) error); ok {
  568. r0 = rf(_a0)
  569. } else {
  570. r0 = ret.Error(0)
  571. }
  572. return r0
  573. }
  574. // String provides a mock function with given fields:
  575. func (_m *Client) String() string {
  576. ret := _m.Called()
  577. var r0 string
  578. if rf, ok := ret.Get(0).(func() string); ok {
  579. r0 = rf()
  580. } else {
  581. r0 = ret.Get(0).(string)
  582. }
  583. return r0
  584. }
  585. // Wait provides a mock function with given fields:
  586. func (_m *Client) Wait() {
  587. _m.Called()
  588. }