You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if rf, ok := ret.Get(0).(func(bool) *genesis.Genesis); ok {
r0 = rf(raw)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*genesis.Genesis)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(bool) error); ok {
r1 = rf(raw)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
type mockConstructorTestingTNewSyncStateAPI interface {
mock.TestingT
Cleanup(func())
}
// NewSyncStateAPI creates a new instance of SyncStateAPI. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.