-
Notifications
You must be signed in to change notification settings - Fork 178
/
verification_metrics.go
65 lines (51 loc) · 1.84 KB
/
verification_metrics.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
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mock
import mock "github.com/stretchr/testify/mock"
// VerificationMetrics is an autogenerated mock type for the VerificationMetrics type
type VerificationMetrics struct {
mock.Mock
}
// OnAssignerProcessFinalizedBlock provides a mock function with given fields: height
func (_m *VerificationMetrics) OnAssignerProcessFinalizedBlock(height uint64) {
_m.Called(height)
}
// OnChunkDataPackReceived provides a mock function with given fields:
func (_m *VerificationMetrics) OnChunkDataPackReceived() {
_m.Called()
}
// OnChunkDataPackRequested provides a mock function with given fields:
func (_m *VerificationMetrics) OnChunkDataPackRequested() {
_m.Called()
}
// OnChunkProcessed provides a mock function with given fields:
func (_m *VerificationMetrics) OnChunkProcessed() {
_m.Called()
}
// OnChunksAssigned provides a mock function with given fields: chunks
func (_m *VerificationMetrics) OnChunksAssigned(chunks int) {
_m.Called(chunks)
}
// OnExecutionReceiptReceived provides a mock function with given fields:
func (_m *VerificationMetrics) OnExecutionReceiptReceived() {
_m.Called()
}
// OnExecutionResultReceived provides a mock function with given fields:
func (_m *VerificationMetrics) OnExecutionResultReceived() {
_m.Called()
}
// OnExecutionResultSent provides a mock function with given fields:
func (_m *VerificationMetrics) OnExecutionResultSent() {
_m.Called()
}
// OnResultApproval provides a mock function with given fields:
func (_m *VerificationMetrics) OnResultApproval() {
_m.Called()
}
// OnVerifiableChunkReceived provides a mock function with given fields:
func (_m *VerificationMetrics) OnVerifiableChunkReceived() {
_m.Called()
}
// OnVerifiableChunkSent provides a mock function with given fields:
func (_m *VerificationMetrics) OnVerifiableChunkSent() {
_m.Called()
}