forked from hyperledger/fabric
-
Notifications
You must be signed in to change notification settings - Fork 1
/
chain_puller.go
47 lines (38 loc) · 1.04 KB
/
chain_puller.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
44
45
46
47
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mocks
import common "github.com/hyperledger/fabric/protos/common"
import mock "github.com/stretchr/testify/mock"
// ChainPuller is an autogenerated mock type for the ChainPuller type
type ChainPuller struct {
mock.Mock
}
// Close provides a mock function with given fields:
func (_m *ChainPuller) Close() {
_m.Called()
}
// HeightsByEndpoints provides a mock function with given fields:
func (_m *ChainPuller) HeightsByEndpoints() map[string]uint64 {
ret := _m.Called()
var r0 map[string]uint64
if rf, ok := ret.Get(0).(func() map[string]uint64); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[string]uint64)
}
}
return r0
}
// PullBlock provides a mock function with given fields: seq
func (_m *ChainPuller) PullBlock(seq uint64) *common.Block {
ret := _m.Called(seq)
var r0 *common.Block
if rf, ok := ret.Get(0).(func(uint64) *common.Block); ok {
r0 = rf(seq)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*common.Block)
}
}
return r0
}