新注册的用户请输入邮箱并保存,随后登录邮箱激活账号。后续可直接使用邮箱登录!

Commit 987c1501 authored by shaozhuguang's avatar shaozhuguang

Merge branch 'v2.3.6_qc_fix_mock' into 'v2.3.6_qc' (merge request !66)

fix: mock file

--bug=1
parents aa4fd8a8 297e6242
......@@ -233,6 +233,36 @@ func (mr *MockSDKInterfaceMockRecorder) GetBlockHeight() *gomock.Call {
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetBlockHeight", reflect.TypeOf((*MockSDKInterface)(nil).GetBlockHeight))
}
// GetContractAddr mocks base method.
func (m *MockSDKInterface) GetContractAddr() (string, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetContractAddr")
ret0, _ := ret[0].(string)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GetContractAddr indicates an expected call of GetContractAddr.
func (mr *MockSDKInterfaceMockRecorder) GetContractAddr() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetContractAddr", reflect.TypeOf((*MockSDKInterface)(nil).GetContractAddr))
}
// GetContractName mocks base method.
func (m *MockSDKInterface) GetContractName() (string, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetContractName")
ret0, _ := ret[0].(string)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// GetContractName indicates an expected call of GetContractName.
func (mr *MockSDKInterfaceMockRecorder) GetContractName() *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetContractName", reflect.TypeOf((*MockSDKInterface)(nil).GetContractName))
}
// GetCreatorOrgId mocks base method.
func (m *MockSDKInterface) GetCreatorOrgId() (string, error) {
m.ctrl.T.Helper()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment