firefly-cli icon indicating copy to clipboard operation
firefly-cli copied to clipboard

500 - failed to invoke backing implementation of 'InstallChaincode'

Open pssilva opened this issue 1 year ago • 2 comments

The error occurs when executing the implantation process described in: Contract deployment.

$ export GOPATH="/opt/go-fabric/go"
$ export GIT_USER_ID="pssilva"
$ mkdir -p $GOPATH/src/github.com/$GIT_USER_ID
$ cd $GOPATH/src/github.com/$GIT_USER_ID
$ git clone https://github.com/hyperledger/firefly-samples.git
$ cd $GOPATH/src/github.com/$GIT_USER_ID/firefly-samples
$ cd asset-transfer-basic/chaincode-go
$ go mod vendor
$ go build 
$ bin/peer lifecycle chaincode package -p . --label asset_transfer ./asset_transfer.zip 
$ ff deploy fabric acmecorp-erp asset_transfer.zip firefly asset_transfer 1.0
Error: docker run --platform linux/amd64 --rm --network=acmecorp-erp_default 

-e CORE_PEER_ADDRESS=fabric_peer:7051 
-e CORE_PEER_TLS_ENABLED=true 
-e CORE_PEER_TLS_ROOTCERT_FILE=/etc/firefly/organizations/peerOrganizations/org1.example.com/peers/fabric_peer.org1.example.com/tls/ca.crt 
-e CORE_PEER_LOCALMSPID=Org1MSP 
-e CORE_PEER_MSPCONFIGPATH=/etc/firefly/organizations/peerOrganizations/org1.example.com/users/[email protected]/msp 
-v /opt/go-fabric/go/src/github.com/pssilva/fabric-samples/asset-transfer-basic/chaincode-go/asset_transfer.zip:/package.tar.gz 
-v acmecorp-erp_firefly_fabric:/etc/firefly hyperledger/fabric-tools:2.3 
peer lifecycle chaincode install /package.tar.gz 

[1] Error: chaincode install failed with status: 
  500 - failed to invoke backing implementation of 'InstallChaincode': 
    could not build chaincode: docker build failed: 
      docker image build failed: 
        docker build failed: Error returned from build: 2 "google.golang.org/protobuf/internal/flags

pssilva avatar Apr 18 '23 21:04 pssilva

any solution? I have the same problem

aleleo1998 avatar Nov 21 '23 16:11 aleleo1998

you don't have match version of golang between your machine and go.mod

lutfi-haslab avatar Jan 11 '24 11:01 lutfi-haslab