2021-06-09 15:18:09 +00:00
|
|
|
// Code generated by MockGen. DO NOT EDIT.
|
2022-06-14 18:08:10 +00:00
|
|
|
// Source: github.com/filecoin-project/lotus/storage/pipeline (interfaces: PreCommitBatcherApi)
|
2021-06-09 15:18:09 +00:00
|
|
|
|
|
|
|
// Package mocks is a generated GoMock package.
|
|
|
|
package mocks
|
|
|
|
|
|
|
|
import (
|
|
|
|
context "context"
|
|
|
|
reflect "reflect"
|
|
|
|
|
2022-06-16 12:19:53 +00:00
|
|
|
gomock "github.com/golang/mock/gomock"
|
|
|
|
|
2021-06-09 15:18:09 +00:00
|
|
|
address "github.com/filecoin-project/go-address"
|
|
|
|
big "github.com/filecoin-project/go-state-types/big"
|
2021-10-01 14:23:21 +00:00
|
|
|
network "github.com/filecoin-project/go-state-types/network"
|
2022-06-16 12:19:53 +00:00
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
api "github.com/filecoin-project/lotus/api"
|
2022-06-16 09:12:33 +00:00
|
|
|
types "github.com/filecoin-project/lotus/chain/types"
|
2021-06-09 15:18:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// MockPreCommitBatcherApi is a mock of PreCommitBatcherApi interface.
|
|
|
|
type MockPreCommitBatcherApi struct {
|
|
|
|
ctrl *gomock.Controller
|
|
|
|
recorder *MockPreCommitBatcherApiMockRecorder
|
|
|
|
}
|
|
|
|
|
|
|
|
// MockPreCommitBatcherApiMockRecorder is the mock recorder for MockPreCommitBatcherApi.
|
|
|
|
type MockPreCommitBatcherApiMockRecorder struct {
|
|
|
|
mock *MockPreCommitBatcherApi
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMockPreCommitBatcherApi creates a new mock instance.
|
|
|
|
func NewMockPreCommitBatcherApi(ctrl *gomock.Controller) *MockPreCommitBatcherApi {
|
|
|
|
mock := &MockPreCommitBatcherApi{ctrl: ctrl}
|
|
|
|
mock.recorder = &MockPreCommitBatcherApiMockRecorder{mock}
|
|
|
|
return mock
|
|
|
|
}
|
|
|
|
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
|
|
|
func (m *MockPreCommitBatcherApi) EXPECT() *MockPreCommitBatcherApiMockRecorder {
|
|
|
|
return m.recorder
|
|
|
|
}
|
|
|
|
|
|
|
|
// ChainHead mocks base method.
|
2022-06-16 11:15:49 +00:00
|
|
|
func (m *MockPreCommitBatcherApi) ChainHead(arg0 context.Context) (*types.TipSet, error) {
|
2021-06-09 15:18:09 +00:00
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "ChainHead", arg0)
|
2022-06-16 11:15:49 +00:00
|
|
|
ret0, _ := ret[0].(*types.TipSet)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
2021-06-09 15:18:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ChainHead indicates an expected call of ChainHead.
|
|
|
|
func (mr *MockPreCommitBatcherApiMockRecorder) ChainHead(arg0 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ChainHead", reflect.TypeOf((*MockPreCommitBatcherApi)(nil).ChainHead), arg0)
|
|
|
|
}
|
|
|
|
|
2022-06-16 13:50:41 +00:00
|
|
|
// MpoolPushMessage mocks base method.
|
|
|
|
func (m *MockPreCommitBatcherApi) MpoolPushMessage(arg0 context.Context, arg1 *types.Message, arg2 *api.MessageSendSpec) (*types.SignedMessage, error) {
|
2021-06-09 15:18:09 +00:00
|
|
|
m.ctrl.T.Helper()
|
2022-06-16 13:50:41 +00:00
|
|
|
ret := m.ctrl.Call(m, "MpoolPushMessage", arg0, arg1, arg2)
|
|
|
|
ret0, _ := ret[0].(*types.SignedMessage)
|
2021-06-09 15:18:09 +00:00
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
2022-06-16 13:50:41 +00:00
|
|
|
// MpoolPushMessage indicates an expected call of MpoolPushMessage.
|
|
|
|
func (mr *MockPreCommitBatcherApiMockRecorder) MpoolPushMessage(arg0, arg1, arg2 interface{}) *gomock.Call {
|
2021-06-09 15:18:09 +00:00
|
|
|
mr.mock.ctrl.T.Helper()
|
2022-06-16 13:50:41 +00:00
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "MpoolPushMessage", reflect.TypeOf((*MockPreCommitBatcherApi)(nil).MpoolPushMessage), arg0, arg1, arg2)
|
2021-06-09 15:18:09 +00:00
|
|
|
}
|
|
|
|
|
2022-08-09 10:57:20 +00:00
|
|
|
// StateAccountKey mocks base method.
|
|
|
|
func (m *MockPreCommitBatcherApi) StateAccountKey(arg0 context.Context, arg1 address.Address, arg2 types.TipSetKey) (address.Address, error) {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "StateAccountKey", arg0, arg1, arg2)
|
|
|
|
ret0, _ := ret[0].(address.Address)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// StateAccountKey indicates an expected call of StateAccountKey.
|
|
|
|
func (mr *MockPreCommitBatcherApiMockRecorder) StateAccountKey(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StateAccountKey", reflect.TypeOf((*MockPreCommitBatcherApi)(nil).StateAccountKey), arg0, arg1, arg2)
|
|
|
|
}
|
|
|
|
|
|
|
|
// StateLookupID mocks base method.
|
|
|
|
func (m *MockPreCommitBatcherApi) StateLookupID(arg0 context.Context, arg1 address.Address, arg2 types.TipSetKey) (address.Address, error) {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "StateLookupID", arg0, arg1, arg2)
|
|
|
|
ret0, _ := ret[0].(address.Address)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// StateLookupID indicates an expected call of StateLookupID.
|
|
|
|
func (mr *MockPreCommitBatcherApiMockRecorder) StateLookupID(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StateLookupID", reflect.TypeOf((*MockPreCommitBatcherApi)(nil).StateLookupID), arg0, arg1, arg2)
|
|
|
|
}
|
|
|
|
|
2021-07-12 16:46:05 +00:00
|
|
|
// StateMinerAvailableBalance mocks base method.
|
2022-06-16 09:12:33 +00:00
|
|
|
func (m *MockPreCommitBatcherApi) StateMinerAvailableBalance(arg0 context.Context, arg1 address.Address, arg2 types.TipSetKey) (big.Int, error) {
|
2021-07-12 16:46:05 +00:00
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "StateMinerAvailableBalance", arg0, arg1, arg2)
|
|
|
|
ret0, _ := ret[0].(big.Int)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// StateMinerAvailableBalance indicates an expected call of StateMinerAvailableBalance.
|
|
|
|
func (mr *MockPreCommitBatcherApiMockRecorder) StateMinerAvailableBalance(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StateMinerAvailableBalance", reflect.TypeOf((*MockPreCommitBatcherApi)(nil).StateMinerAvailableBalance), arg0, arg1, arg2)
|
|
|
|
}
|
|
|
|
|
2021-06-09 15:18:09 +00:00
|
|
|
// StateMinerInfo mocks base method.
|
2022-06-16 09:12:33 +00:00
|
|
|
func (m *MockPreCommitBatcherApi) StateMinerInfo(arg0 context.Context, arg1 address.Address, arg2 types.TipSetKey) (api.MinerInfo, error) {
|
2021-06-09 15:18:09 +00:00
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "StateMinerInfo", arg0, arg1, arg2)
|
2022-04-20 21:34:28 +00:00
|
|
|
ret0, _ := ret[0].(api.MinerInfo)
|
2021-06-09 15:18:09 +00:00
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// StateMinerInfo indicates an expected call of StateMinerInfo.
|
|
|
|
func (mr *MockPreCommitBatcherApiMockRecorder) StateMinerInfo(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StateMinerInfo", reflect.TypeOf((*MockPreCommitBatcherApi)(nil).StateMinerInfo), arg0, arg1, arg2)
|
|
|
|
}
|
2021-10-01 14:23:21 +00:00
|
|
|
|
|
|
|
// StateNetworkVersion mocks base method.
|
2022-06-16 09:12:33 +00:00
|
|
|
func (m *MockPreCommitBatcherApi) StateNetworkVersion(arg0 context.Context, arg1 types.TipSetKey) (network.Version, error) {
|
2021-10-01 14:23:21 +00:00
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "StateNetworkVersion", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].(network.Version)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// StateNetworkVersion indicates an expected call of StateNetworkVersion.
|
|
|
|
func (mr *MockPreCommitBatcherApiMockRecorder) StateNetworkVersion(arg0, arg1 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StateNetworkVersion", reflect.TypeOf((*MockPreCommitBatcherApi)(nil).StateNetworkVersion), arg0, arg1)
|
|
|
|
}
|
2022-08-09 10:57:20 +00:00
|
|
|
|
|
|
|
// WalletBalance mocks base method.
|
|
|
|
func (m *MockPreCommitBatcherApi) WalletBalance(arg0 context.Context, arg1 address.Address) (big.Int, error) {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "WalletBalance", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].(big.Int)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// WalletBalance indicates an expected call of WalletBalance.
|
|
|
|
func (mr *MockPreCommitBatcherApiMockRecorder) WalletBalance(arg0, arg1 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "WalletBalance", reflect.TypeOf((*MockPreCommitBatcherApi)(nil).WalletBalance), arg0, arg1)
|
|
|
|
}
|
|
|
|
|
|
|
|
// WalletHas mocks base method.
|
|
|
|
func (m *MockPreCommitBatcherApi) WalletHas(arg0 context.Context, arg1 address.Address) (bool, error) {
|
|
|
|
m.ctrl.T.Helper()
|
|
|
|
ret := m.ctrl.Call(m, "WalletHas", arg0, arg1)
|
|
|
|
ret0, _ := ret[0].(bool)
|
|
|
|
ret1, _ := ret[1].(error)
|
|
|
|
return ret0, ret1
|
|
|
|
}
|
|
|
|
|
|
|
|
// WalletHas indicates an expected call of WalletHas.
|
|
|
|
func (mr *MockPreCommitBatcherApiMockRecorder) WalletHas(arg0, arg1 interface{}) *gomock.Call {
|
|
|
|
mr.mock.ctrl.T.Helper()
|
|
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "WalletHas", reflect.TypeOf((*MockPreCommitBatcherApi)(nil).WalletHas), arg0, arg1)
|
|
|
|
}
|