|
Re: Questions in Documents --- "Adding an Org to a channel"
Yes, docker directory is present inside compose directory.
You can check if specifying path as compose/docker/docker-compose-org3.yaml works.
-Satheesh
Yes, docker directory is present inside compose directory.
You can check if specifying path as compose/docker/docker-compose-org3.yaml works.
-Satheesh
|
By
satheesh
·
#11516
·
|
|
Re: Questions in Documents --- "Adding an Org to a channel"
This is probably a typo and it meant to be compose folder instead of docker. Feel free to submit pull request with appropriate documentation fix.
The command should be
docke-compose -f
This is probably a typo and it meant to be compose folder instead of docker. Feel free to submit pull request with appropriate documentation fix.
The command should be
docke-compose -f
|
By
Artem Barger
·
#11515
·
|
|
Re: Storage data in private data collection has a different value
#fabric
#couchdb
Is anyone faced with this issue?
Is anyone faced with this issue?
|
By
Joao Antunes
·
#11514
·
|
|
Questions in Documents --- "Adding an Org to a channel"
Dear Sir,
I found a small error in the documents.
In the section: Tutorials--->Adding an org to a new channel--->Bring up Org3 components. The instructions are like below:
However, the fabric samples
Dear Sir,
I found a small error in the documents.
In the section: Tutorials--->Adding an org to a new channel--->Bring up Org3 components. The instructions are like below:
However, the fabric samples
|
By
Cindy Qian <cindy.qian@...>
·
#11513
·
|
|
Re: Transient Arguments
#fabric
Yes it is typical to send both regular arguments and private transient arguments when invoking chaincode.
https://hyperledger-fabric.readthedocs.io/en/latest/test_network.html demonstrates regular
Yes it is typical to send both regular arguments and private transient arguments when invoking chaincode.
https://hyperledger-fabric.readthedocs.io/en/latest/test_network.html demonstrates regular
|
By
David Enyeart
·
#11512
·
|
|
Transient Arguments
#fabric
Hi Team,
Is it possible to send transient and non -transient arguments together in chaincode args.
I have an asset struct with fields id,name,owner and price.Is it possible to make "price" only
Hi Team,
Is it possible to send transient and non -transient arguments together in chaincode args.
I have an asset struct with fields id,name,owner and price.Is it possible to make "price" only
|
By
Kumari Shweta
·
#11511
·
|
|
Event: Documentation Workgroup monthly call - 09/30/2022
#cal-reminder
Reminder: Documentation Workgroup monthly call
When:
09/30/2022
11:00am to 12:00pm
(UTC-04:00) America/New
Reminder: Documentation Workgroup monthly call
When:
09/30/2022
11:00am to 12:00pm
(UTC-04:00) America/New
|
By
Group Notification <noreply@...>
·
#11510
·
|
|
Storage size of peers in test-network
#fabric-peer
Hello, in test-network what is the storage size of peers? In general, where can I find the peer characteristics (cpu, memory, storage) for the deployment? Also, using Level DB could you make an
Hello, in test-network what is the storage size of peers? In general, where can I find the peer characteristics (cpu, memory, storage) for the deployment? Also, using Level DB could you make an
|
By
Nikos Karamolegkos
·
#11509
·
|
|
Re: Fabric release-2.5 branch and main branch
We are shooting for around end of year for the v2.5 release, which would be the next LTS release.
From:fabric@... <fabric@...> on behalf of Baohua Yang <yangbaohua@...>
Date: Wednesday, September
We are shooting for around end of year for the v2.5 release, which would be the next LTS release.
From:fabric@... <fabric@...> on behalf of Baohua Yang <yangbaohua@...>
Date: Wednesday, September
|
By
David Enyeart
·
#11508
·
|
|
Re: Fabric release-2.5 branch and main branch
Do we have the planed release date now?
Thanks!
Do we have the planed release date now?
Thanks!
|
By
Baohua Yang
·
#11507
·
|
|
Re: return type of chaincode functions using EvaluateTransaction
based on this I have to
func (s *smartContract) GetAirQNomVals(ctx contractapi.TransactionContextInterface) (string, error) {
resultsIterator, err := ctx.GetStub().GetState("NominalValuesState")
if
based on this I have to
func (s *smartContract) GetAirQNomVals(ctx contractapi.TransactionContextInterface) (string, error) {
resultsIterator, err := ctx.GetStub().GetState("NominalValuesState")
if
|
By
Nikos Karamolegkos
·
#11506
·
|
|
Re: return type of chaincode functions using EvaluateTransaction
the
evaluateResult, err := contract.EvaluateTransaction("GetAirQNomVals")returns Invalid type. Expected: array, given: string - Transaction processing for endorser
func (s *smartContract)
the
evaluateResult, err := contract.EvaluateTransaction("GetAirQNomVals")returns Invalid type. Expected: array, given: string - Transaction processing for endorser
func (s *smartContract)
|
By
Nikos Karamolegkos
·
#11505
·
|
|
Now: Private Chaincode Lab - 09/27/2022
#cal-notice
Private Chaincode Lab
When:
09/27/2022
8:00am to 9:00am
(UTC-07:00) America/Los Angeles
Where:
https://zoom.us/my/hyperledger.community.3?pwd=UE90WHhEaHRqOGEyMkV3cldKa2d2dz09
Organizer: Marcus
Private Chaincode Lab
When:
09/27/2022
8:00am to 9:00am
(UTC-07:00) America/Los Angeles
Where:
https://zoom.us/my/hyperledger.community.3?pwd=UE90WHhEaHRqOGEyMkV3cldKa2d2dz09
Organizer: Marcus
|
By
Group Notification <noreply@...>
·
#11504
·
|
|
Re: setEvent is not sending the contect
The commit listener is intended only to check for the commit status of submitted transactions at peers. For performance, it uses filtered blocks, which do not contain chaincode event payloads. If you
The commit listener is intended only to check for the commit status of submitted transactions at peers. For performance, it uses filtered blocks, which do not contain chaincode event payloads. If you
|
By
Mark Lewis
·
#11503
·
|
|
Re: Regarding network object
#fabricsdk
#java
The legacy low-level SDK uses a "handle" as a way of referencing block listeners so that you can remove them using Channel.unregisterBlockListener(). The handle is just a unique identifier. This
The legacy low-level SDK uses a "handle" as a way of referencing block listeners so that you can remove them using Channel.unregisterBlockListener(). The handle is just a unique identifier. This
|
By
Mark Lewis
·
#11502
·
|
|
Re: return type of chaincode functions using EvaluateTransaction
Hello – you can return bytes if you wish;
What errors did you encounter?
Thanks Matthew
Hello – you can return bytes if you wish;
What errors did you encounter?
Thanks Matthew
|
By
Matthew White
·
#11501
·
|
|
return type of chaincode functions using EvaluateTransaction
As I can see this functions returns car which is type *Car after unmarshal. Given that the EvaluateTransaction returns bytes can I bypass unmarshal and return carAsBytes from
As I can see this functions returns car which is type *Car after unmarshal. Given that the EvaluateTransaction returns bytes can I bypass unmarshal and return carAsBytes from
|
By
Nikos Karamolegkos
·
#11500
·
|
|
Regarding network object
#fabricsdk
#java
Hi All,
what is the value returned by this particular method of a network object?
Network networkObj
networkObj.getChannel().getBlockListenerHandles()
(fabric sdk java)
Hi All,
what is the value returned by this particular method of a network object?
Network networkObj
networkObj.getChannel().getBlockListenerHandles()
(fabric sdk java)
|
By
jeff.jo95z@...
·
#11499
·
|
|
Re: get specific records after GetHistoryForKey
#fabric-chaincode
#chaincode
#database
#fabric-questions
Hello;
In terms of parsing the history really would need to be parsed to find specific values; depending on the size you could always put the data into a different data structure, so it becomes a
Hello;
In terms of parsing the history really would need to be parsed to find specific values; depending on the size you could always put the data into a different data structure, so it becomes a
|
By
Matthew White
·
#11498
·
|
|
get specific records after GetHistoryForKey
#fabric-chaincode
#chaincode
#database
#fabric-questions
Hello, I use Level DB and I am using GetHistoryForKey to get the history of a key which return some records. Is there an efficient way to parse the returned records in order to find some specific
Hello, I use Level DB and I am using GetHistoryForKey to get the history of a key which return some records. Is there an efficient way to parse the returned records in order to find some specific
|
By
Nikos Karamolegkos
·
#11497
·
|