diff options
| author | Taras Madan <tarasmadan@google.com> | 2022-09-26 15:08:30 +0000 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2022-10-24 20:39:44 +0200 |
| commit | 914c54c355c0a93e7c8696bb4f5750da2c5c17b6 (patch) | |
| tree | a207df376f5bf57eedbcfa56cc59755d109f2ae7 /vm/proxyapp/mocks/ProxyAppInterface.go | |
| parent | ff2fe65db3b673b60a5c11df17a3de7f1ec2b96e (diff) | |
vm/proxyapp: extend RPC API to support logging
Diffstat (limited to 'vm/proxyapp/mocks/ProxyAppInterface.go')
| -rw-r--r-- | vm/proxyapp/mocks/ProxyAppInterface.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/vm/proxyapp/mocks/ProxyAppInterface.go b/vm/proxyapp/mocks/ProxyAppInterface.go index 38f4f1418..95a86a8da 100644 --- a/vm/proxyapp/mocks/ProxyAppInterface.go +++ b/vm/proxyapp/mocks/ProxyAppInterface.go @@ -96,6 +96,20 @@ func (_m *ProxyAppInterface) Forward(in proxyrpc.ForwardParams, out *proxyrpc.Fo return r0 } +// PoolLogs provides a mock function with given fields: in, out +func (_m *ProxyAppInterface) PoolLogs(in proxyrpc.PoolLogsParam, out *proxyrpc.PoolLogsReply) error { + ret := _m.Called(in, out) + + var r0 error + if rf, ok := ret.Get(0).(func(proxyrpc.PoolLogsParam, *proxyrpc.PoolLogsReply) error); ok { + r0 = rf(in, out) + } else { + r0 = ret.Error(0) + } + + return r0 +} + // RunReadProgress provides a mock function with given fields: in, out func (_m *ProxyAppInterface) RunReadProgress(in proxyrpc.RunReadProgressParams, out *proxyrpc.RunReadProgressReply) error { ret := _m.Called(in, out) |
