meshplus/bitxhub

Sth worry in Deploy Interchain Contract

bigrance opened this issue · 8 comments

General Question

In quick start ,when i execute to bash chaincode.sh install , it says that:
image
image

and in https://github.com/hyperledger/fabric-sdk-go/ it says that :
image

and i opened chaincode.sh , when executed to go get "github.com/securekey/fabric-examples/fabric-cli/cmd/fabric-cli",it said that:
image

what should i do

What version of go are you using? Its recommended to use go1.1.3 and above.

the go i used was 1.15

the go i used was 1.15

What is ur go env? Do you set ”GO111MODULE=on“

the go i used was 1.15

What is ur go env? Do you set ”GO111MODULE=on“

oh,i didn't! let we try again

the go i used was 1.15

What is ur go env? Do you set ”GO111MODULE=on“

it's all right now, but another error occured,it says that:
===> 2. Set Alice 10000 amout in transfer chaincode
*** 0 successfull invocation(s) out of 1
*** 0 successfull invocation(s) out of 1
*** 0 successfull invocation(s) out of 1
*** 0 successfull invocation(s) out of 1

what should i do?

It's probably because your are limiting your docker cpu and memory usage, and when you are trying to invoke ”transfer“ chaincode inside docker container, the invocation got timeout. You could try to turn up the limits mentioned above to fix this.

It's probably because your are limiting your docker cpu and memory usage, and when you are trying to invoke ”transfer“ chaincode inside docker container, the invocation got timeout. You could try to turn up the limits mentioned above to fix this.

thankyou,i'll try