forked from 0xPolygon/cdk-data-availability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheth_client.generated.go
161 lines (129 loc) · 4.58 KB
/
eth_client.generated.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
// Code generated by mockery v2.40.1. DO NOT EDIT.
package mocks
import (
big "math/big"
common "github.com/ethereum/go-ethereum/common"
context "context"
mock "github.com/stretchr/testify/mock"
types "github.com/ethereum/go-ethereum/core/types"
)
// EthClient is an autogenerated mock type for the EthClient type
type EthClient struct {
mock.Mock
}
type EthClient_Expecter struct {
mock *mock.Mock
}
func (_m *EthClient) EXPECT() *EthClient_Expecter {
return &EthClient_Expecter{mock: &_m.Mock}
}
// BlockByNumber provides a mock function with given fields: ctx, number
func (_m *EthClient) BlockByNumber(ctx context.Context, number *big.Int) (*types.Block, error) {
ret := _m.Called(ctx, number)
if len(ret) == 0 {
panic("no return value specified for BlockByNumber")
}
var r0 *types.Block
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, *big.Int) (*types.Block, error)); ok {
return rf(ctx, number)
}
if rf, ok := ret.Get(0).(func(context.Context, *big.Int) *types.Block); ok {
r0 = rf(ctx, number)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*types.Block)
}
}
if rf, ok := ret.Get(1).(func(context.Context, *big.Int) error); ok {
r1 = rf(ctx, number)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// EthClient_BlockByNumber_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BlockByNumber'
type EthClient_BlockByNumber_Call struct {
*mock.Call
}
// BlockByNumber is a helper method to define mock.On call
// - ctx context.Context
// - number *big.Int
func (_e *EthClient_Expecter) BlockByNumber(ctx interface{}, number interface{}) *EthClient_BlockByNumber_Call {
return &EthClient_BlockByNumber_Call{Call: _e.mock.On("BlockByNumber", ctx, number)}
}
func (_c *EthClient_BlockByNumber_Call) Run(run func(ctx context.Context, number *big.Int)) *EthClient_BlockByNumber_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(*big.Int))
})
return _c
}
func (_c *EthClient_BlockByNumber_Call) Return(_a0 *types.Block, _a1 error) *EthClient_BlockByNumber_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *EthClient_BlockByNumber_Call) RunAndReturn(run func(context.Context, *big.Int) (*types.Block, error)) *EthClient_BlockByNumber_Call {
_c.Call.Return(run)
return _c
}
// CodeAt provides a mock function with given fields: ctx, account, blockNumber
func (_m *EthClient) CodeAt(ctx context.Context, account common.Address, blockNumber *big.Int) ([]byte, error) {
ret := _m.Called(ctx, account, blockNumber)
if len(ret) == 0 {
panic("no return value specified for CodeAt")
}
var r0 []byte
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, common.Address, *big.Int) ([]byte, error)); ok {
return rf(ctx, account, blockNumber)
}
if rf, ok := ret.Get(0).(func(context.Context, common.Address, *big.Int) []byte); ok {
r0 = rf(ctx, account, blockNumber)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).([]byte)
}
}
if rf, ok := ret.Get(1).(func(context.Context, common.Address, *big.Int) error); ok {
r1 = rf(ctx, account, blockNumber)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// EthClient_CodeAt_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CodeAt'
type EthClient_CodeAt_Call struct {
*mock.Call
}
// CodeAt is a helper method to define mock.On call
// - ctx context.Context
// - account common.Address
// - blockNumber *big.Int
func (_e *EthClient_Expecter) CodeAt(ctx interface{}, account interface{}, blockNumber interface{}) *EthClient_CodeAt_Call {
return &EthClient_CodeAt_Call{Call: _e.mock.On("CodeAt", ctx, account, blockNumber)}
}
func (_c *EthClient_CodeAt_Call) Run(run func(ctx context.Context, account common.Address, blockNumber *big.Int)) *EthClient_CodeAt_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(common.Address), args[2].(*big.Int))
})
return _c
}
func (_c *EthClient_CodeAt_Call) Return(_a0 []byte, _a1 error) *EthClient_CodeAt_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *EthClient_CodeAt_Call) RunAndReturn(run func(context.Context, common.Address, *big.Int) ([]byte, error)) *EthClient_CodeAt_Call {
_c.Call.Return(run)
return _c
}
// NewEthClient creates a new instance of EthClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func NewEthClient(t interface {
mock.TestingT
Cleanup(func())
}) *EthClient {
mock := &EthClient{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}