-
Notifications
You must be signed in to change notification settings - Fork 178
/
pending_receipts.go
72 lines (56 loc) · 1.63 KB
/
pending_receipts.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mempool
import (
flow "github.com/onflow/flow-go/model/flow"
mock "github.com/stretchr/testify/mock"
)
// PendingReceipts is an autogenerated mock type for the PendingReceipts type
type PendingReceipts struct {
mock.Mock
}
// Add provides a mock function with given fields: receipt
func (_m *PendingReceipts) Add(receipt *flow.ExecutionReceipt) bool {
ret := _m.Called(receipt)
var r0 bool
if rf, ok := ret.Get(0).(func(*flow.ExecutionReceipt) bool); ok {
r0 = rf(receipt)
} else {
r0 = ret.Get(0).(bool)
}
return r0
}
// ByPreviousResultID provides a mock function with given fields: previousReusltID
func (_m *PendingReceipts) ByPreviousResultID(previousReusltID flow.Identifier) []*flow.ExecutionReceipt {
ret := _m.Called(previousReusltID)
var r0 []*flow.ExecutionReceipt
if rf, ok := ret.Get(0).(func(flow.Identifier) []*flow.ExecutionReceipt); ok {
r0 = rf(previousReusltID)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]*flow.ExecutionReceipt)
}
}
return r0
}
// PruneUpToHeight provides a mock function with given fields: height
func (_m *PendingReceipts) PruneUpToHeight(height uint64) error {
ret := _m.Called(height)
var r0 error
if rf, ok := ret.Get(0).(func(uint64) error); ok {
r0 = rf(height)
} else {
r0 = ret.Error(0)
}
return r0
}
// Rem provides a mock function with given fields: receiptID
func (_m *PendingReceipts) Rem(receiptID flow.Identifier) bool {
ret := _m.Called(receiptID)
var r0 bool
if rf, ok := ret.Get(0).(func(flow.Identifier) bool); ok {
r0 = rf(receiptID)
} else {
r0 = ret.Get(0).(bool)
}
return r0
}