|
Fabric 1.4.7 go chaincode install error
#fabric-chaincode
#fabric-sdk-go
#hyperledger-fabric
No Santiago, I have not been able to solve the problem yet.
No Santiago, I have not been able to solve the problem yet.
|
By
Jay Chandran
· #8444
·
|
|
Fabric 1.4.7 go chaincode install error
#fabric-chaincode
#fabric-sdk-go
#hyperledger-fabric
Thanks, I have found this jira (https://jira.hyperledger.org/browse/FAB-15782), where it is defined the environmental variable CHAINCODE_VENDORSHIM as a possible solution. Maybe it helps you. I am try
Thanks, I have found this jira (https://jira.hyperledger.org/browse/FAB-15782), where it is defined the environmental variable CHAINCODE_VENDORSHIM as a possible solution. Maybe it helps you. I am try
|
By
Santiago Figueroa Lorenzo
· #8445
·
|
|
Chaincode container is running but query operation gives chaincode instantiation failed
#fabric-chaincode
As indicated at https://stackoverflow.com/questions/55394476/error-could-not-send-eof-on-instantiating-chaincode , EOF can be caused by TLS issues between client and orderer. This issue is now resolve
As indicated at https://stackoverflow.com/questions/55394476/error-could-not-send-eof-on-instantiating-chaincode , EOF can be caused by TLS issues between client and orderer. This issue is now resolve
|
By
David Enyeart
· #8352
·
|
|
Chaincode container is running but query operation gives chaincode instantiation failed
#fabric-chaincode
Thanks Dave. The error message was not clear why it was failing. For others, if you end up with the same issue, to fix the error, make sure the TLS arguments passed correctly. An example working insta
Thanks Dave. The error message was not clear why it was failing. For others, if you end up with the same issue, to fix the error, make sure the TLS arguments passed correctly. An example working insta
|
By
Suresh Appana
· #8359
·
|
|
Chaincode container is running but query operation gives chaincode instantiation failed
#fabric-chaincode
I've improved the error message a bit so that the next people to hit the issue at least know which communication has failed upfront: https://github.com/hyperledger/fabric/pull/1308 Dave Enyeart "Sures
I've improved the error message a bit so that the next people to hit the issue at least know which communication has failed upfront: https://github.com/hyperledger/fabric/pull/1308 Dave Enyeart "Sures
|
By
David Enyeart
· #8361
·
|
|
How to write test case for fabric-contract-api-go
#fabric-chaincode
hello, What is the best way to write test cases for smart contracts written in golang using the fabric-contract-api-go Thanks in advance
hello, What is the best way to write test cases for smart contracts written in golang using the fabric-contract-api-go Thanks in advance
|
By
saiomkar
· #8369
·
|
|
Fabric support on python
#fabric
#fabric-chaincode
Hello everyone, My question is much like the title, I asked this in fabric rocket chat but unfortunately I didn't get any answer. Basically what my question is if Fabric and what comes of it, like cha
Hello everyone, My question is much like the title, I asked this in fabric rocket chat but unfortunately I didn't get any answer. Basically what my question is if Fabric and what comes of it, like cha
|
By
Rui M.
· #8376
·
|
|
fabric-javaenv:2.2.0 image for arm architecture
#fabric-chaincode
Thank you for your answer! I used your javaenv image. I try the "Write your FIrst Application" tutorial for java and when I run the app after building dependencies: (mvn test for fabcar application an
Thank you for your answer! I used your javaenv image. I try the "Write your FIrst Application" tutorial for java and when I run the app after building dependencies: (mvn test for fabcar application an
|
By
kokolaki@...
· #9048
·
|
|
fabric-javaenv:2.2.0 image for arm architecture
#fabric-chaincode
As Gari pointed out, the reason for the failing build is that protoc-gen does not have a native binary for arm64. With no promises it'll work here is an image you can try: btl5037/fabric-javaenv:2.2.0
As Gari pointed out, the reason for the failing build is that protoc-gen does not have a native binary for arm64. With no promises it'll work here is an image you can try: btl5037/fabric-javaenv:2.2.0
|
By
...
· #9038
·
|
|
#fabric-chaincode #hyperledger-fabric #fabric-sdk-node , peer lifecycle chaincode install issue
#fabric-chaincode
#hyperledger-fabric
#fabric-sdk-node
Hi Chris, Here is the package command: # peer lifecycle chaincode package chaincode.tar.gz --path chaincode/chaincode/javascript/ --lang nod e --label counter_v1 2020-08-28 06:04:04.548 UTC [bccsp] Ge
Hi Chris, Here is the package command: # peer lifecycle chaincode package chaincode.tar.gz --path chaincode/chaincode/javascript/ --lang nod e --label counter_v1 2020-08-28 06:04:04.548 UTC [bccsp] Ge
|
By
Bozhidar Ignatov
· #8927
·
|
|
external chaincode service
#fabric-chaincode
#tls
Hi, I‘m looking for an example how to setup TLS for the shim.chaincode server. I would like to know how I can setup an example with TLS enabled.
Hi, I‘m looking for an example how to setup TLS for the shim.chaincode server. I would like to know how I can setup an example with TLS enabled.
|
By
...
· #9234
·
|
|
Unable to Query data from Hyperledger Fabric
#couchdb
#fabric-chaincode
#hyperledger-fabric
Hi David, The chaincode is performing a select query on the CouchDB documents, and the fields set for filtering the results are indexed while installing and instantiating the chaincode. The single que
Hi David, The chaincode is performing a select query on the CouchDB documents, and the fields set for filtering the results are indexed while installing and instantiating the chaincode. The single que
|
By
chintanr97@...
· #9465
·
|
|
Unable to Query data from Hyperledger Fabric
#couchdb
#fabric-chaincode
#hyperledger-fabric
Adding workarounds such as longer timeouts will only prolong your pain. You must address the root cause of the slow query in CouchDB. Troubleshoot it in a separate CouchDB environment until you have f
Adding workarounds such as longer timeouts will only prolong your pain. You must address the root cause of the slow query in CouchDB. Troubleshoot it in a separate CouchDB environment until you have f
|
By
David Enyeart
· #9467
·
|
|
Unable to Query data from Hyperledger Fabric
#couchdb
#fabric-chaincode
#hyperledger-fabric
Your first log snippet showed CouchDB queries timing out after 35 seconds each. This is the core.yaml ledger.state.couchDBConfig.requestTimeout of 35s. It means that CouchDB is still processing the qu
Your first log snippet showed CouchDB queries timing out after 35 seconds each. This is the core.yaml ledger.state.couchDBConfig.requestTimeout of 35s. It means that CouchDB is still processing the qu
|
By
David Enyeart
· #9469
·
|
|
Unable to Query data from Hyperledger Fabric
#couchdb
#fabric-chaincode
#hyperledger-fabric
Hi David, That's correct! However, we found a minor fix in the chaincode and post that the latest error logs give following stack trace: ``` [34m2021-01-12 09:22:03.362 UTC [endorser] callChaincode ->
Hi David, That's correct! However, we found a minor fix in the chaincode and post that the latest error logs give following stack trace: ``` [34m2021-01-12 09:22:03.362 UTC [endorser] callChaincode ->
|
By
chintanr97@...
· #9474
·
|
|
how to reference fabric 2.2 in application go.mod?
#fabric
#fabric-chaincode
when my GO chaincode has reference to fabric code, the go.mod would pick the following version reference: github.com/hyperledger/fabric v2.1.1+incompatible I cannot change the version to v2.2.1, becau
when my GO chaincode has reference to fabric code, the go.mod would pick the following version reference: github.com/hyperledger/fabric v2.1.1+incompatible I cannot change the version to v2.2.1, becau
|
By
Yueming Xu
· #9492
·
|
|
how to reference fabric 2.2 in application go.mod?
#fabric
#fabric-chaincode
You can reference a commit SHA, for example, the latest hash for the release-2.2 branch can be picked by doing a `go get` on the SHA like this: `go get github.com/hyperledger/fabric@68055151b43cd3fd7e
You can reference a commit SHA, for example, the latest hash for the release-2.2 branch can be picked by doing a `go get` on the SHA like this: `go get github.com/hyperledger/fabric@68055151b43cd3fd7e
|
By
...
· #9493
·
|
|
statebased.NewStateEP(ep) does not preserve NOutOf?
#fabric
#fabric-chaincode
If you call statebased.NewStateEP(ep), the returned KeyEndorsementPolicy will make all identities required to endorse. Even if the original EP requires only 2 outOf 3 orgs to endorse, the policy retur
If you call statebased.NewStateEP(ep), the returned KeyEndorsementPolicy will make all identities required to endorse. Even if the original EP requires only 2 outOf 3 orgs to endorse, the policy retur
|
By
Yueming Xu
· #9496
·
|
|
API to get local MSPID in chaincode?
#fabric
#fabric-chaincode
#fabric-questions
Hi, If I get your questions right, you want to fetch the MSPID of the peer that starts/endorses the chaincode. For that purpose you can use the chaincode shim API. In case it is java based chaincode y
Hi, If I get your questions right, you want to fetch the MSPID of the peer that starts/endorses the chaincode. For that purpose you can use the chaincode shim API. In case it is java based chaincode y
|
By
Tsvetan Georgiev
· #9459
·
|
|
API to get local MSPID in chaincode?
#fabric
#fabric-chaincode
#fabric-questions
Thanks. chaincode-go has the same API, shim.GetMSPID(), which returns the value of env CORE_PEER_LOCALMSPID.
Thanks. chaincode-go has the same API, shim.GetMSPID(), which returns the value of env CORE_PEER_LOCALMSPID.
|
By
Yueming Xu
· #9462
·
|