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

Commit 24ce2b84 authored by tianle's avatar tianle

Merge branch 'v2.3.3_qc_info' into 'v2.3.3_qc' (merge request !46)

fix: get tx info error --bug=0
fix: get tx info error
--bug=0
parents f62c1c57 ab0c824f
...@@ -538,7 +538,6 @@ func (s *SDK) GetTxId() (string, error) { ...@@ -538,7 +538,6 @@ func (s *SDK) GetTxId() (string, error) {
} }
func (s *SDK) GetTxInfo(txId string) protogo.Response { func (s *SDK) GetTxInfo(txId string) protogo.Response {
contractVersion := "v1.0.0"
paramTxId := "txId" paramTxId := "txId"
paramMethod := "method" paramMethod := "method"
...@@ -549,7 +548,7 @@ func (s *SDK) GetTxInfo(txId string) protogo.Response { ...@@ -549,7 +548,7 @@ func (s *SDK) GetTxInfo(txId string) protogo.Response {
paramMethod: []byte(method), paramMethod: []byte(method),
} }
response := s.CallContract(contractName, contractVersion, args) response := s.CallContract(contractName, method, args)
return response return response
} }
......
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