-
Notifications
You must be signed in to change notification settings - Fork 0
/
dispatcher.go
43 lines (33 loc) · 1.04 KB
/
dispatcher.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mocks
import (
context "context"
orderer "github.com/Yunpeng-J/fabric-protos-go/orderer"
mock "github.com/stretchr/testify/mock"
)
// Dispatcher is an autogenerated mock type for the Dispatcher type
type Dispatcher struct {
mock.Mock
}
// DispatchConsensus provides a mock function with given fields: ctx, request
func (_m *Dispatcher) DispatchConsensus(ctx context.Context, request *orderer.ConsensusRequest) error {
ret := _m.Called(ctx, request)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, *orderer.ConsensusRequest) error); ok {
r0 = rf(ctx, request)
} else {
r0 = ret.Error(0)
}
return r0
}
// DispatchSubmit provides a mock function with given fields: ctx, request
func (_m *Dispatcher) DispatchSubmit(ctx context.Context, request *orderer.SubmitRequest) error {
ret := _m.Called(ctx, request)
var r0 error
if rf, ok := ret.Get(0).(func(context.Context, *orderer.SubmitRequest) error); ok {
r0 = rf(ctx, request)
} else {
r0 = ret.Error(0)
}
return r0
}