mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Marbles02 chaincode updated to utilize private data collections on all ledger APIs. To run the sample, follow the instructions in FAB-10231. An official tutorial will follow. Change-Id: Id9b3dbae8ab62afe81ee8d116b7bd4efc0213933 Signed-off-by: David Enyeart <enyeart@us.ibm.com>
16 lines
317 B
JSON
16 lines
317 B
JSON
[
|
|
{
|
|
"name": "collectionMarbles",
|
|
"policy": "OR('Org1MSP.member', 'Org2MSP.member')",
|
|
"requiredPeerCount": 0,
|
|
"maxPeerCount": 3,
|
|
"blockToLive":1000000
|
|
},
|
|
{
|
|
"name": "collectionMarblePrivateDetails",
|
|
"policy": "OR('Org1MSP.member')",
|
|
"requiredPeerCount": 0,
|
|
"maxPeerCount": 3,
|
|
"blockToLive":3
|
|
}
|
|
]
|