-
Notifications
You must be signed in to change notification settings - Fork 514
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- removed pre-test gulp task not needed - added private data cucumber scenario to be implemented - copied goLang example_cc_private contract to be used by private data cucumber Signed-off-by: heatherlp <[email protected]> Change-Id: I2c0168c3573e2e5866634c9784ace7ff4a8febc1
- Loading branch information
Showing
605 changed files
with
461,621 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
149 changes: 149 additions & 0 deletions
149
test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/Gopkg.lock
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
15 changes: 15 additions & 0 deletions
15
test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/Gopkg.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Copyright IBM Corp All Rights Reserved. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/hyperledger/fabric-chaincode-go" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/hyperledger/fabric-protos-go" | ||
|
||
[prune] | ||
go-tests = true | ||
unused-packages = true |
1 change: 1 addition & 0 deletions
1
...egacyGoPrivateData/META-INF/statedb/couchdb/collections/detailCol/indexes/indexOwner.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"index":{"fields":["docType","owner"]},"ddoc":"indexOwnerDoc", "name":"indexOwner","type":"json"} |
51 changes: 51 additions & 0 deletions
51
test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/collections_config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
[{ | ||
"name": "detailCol", | ||
"policy": { | ||
"identities": [{ | ||
"role": { | ||
"name": "member", | ||
"mspId": "Org1MSP" | ||
} | ||
}, | ||
{ | ||
"role": { | ||
"name": "member", | ||
"mspId": "Org2MSP" | ||
} | ||
} | ||
], | ||
"policy": { | ||
"1-of": [ | ||
{ | ||
"signed-by": 0 | ||
}, | ||
{ | ||
"signed-by": 1 | ||
} | ||
] | ||
} | ||
}, | ||
"requiredPeerCount": 1, | ||
"maxPeerCount": 1, | ||
"blockToLive": 100 | ||
}, | ||
{ | ||
"name": "sensitiveCol", | ||
"policy": { | ||
"identities": [{ | ||
"role": { | ||
"name": "member", | ||
"mspId": "Org1MSP" | ||
} | ||
}], | ||
"policy": { | ||
"1-of": [{ | ||
"signed-by": 0 | ||
}] | ||
} | ||
}, | ||
"requiredPeerCount": 0, | ||
"maxPeerCount": 1, | ||
"blockToLive": 100 | ||
} | ||
] |
Oops, something went wrong.