-
Notifications
You must be signed in to change notification settings - Fork 516
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create default policy of 'Signed By any member of org'
FAB-2617 initial step to support chaincode policy during instantiate. The instantiate call always creates a "signed by any member of org by mspid" where the mspid is the submitting user's local msp. this guarantees that the default policy will always work. enhanced policy support will be added in a later changeset. Change-Id: Iede86d1c2d296141deec79ee6f7cd12502cc1238 Signed-off-by: Jim Zhang <[email protected]>
- Loading branch information
1 parent
d99495f
commit 665fc61
Showing
3 changed files
with
53 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
require('./e2e/create-channel.js'); | ||
require('./e2e/join-channel.js'); | ||
require('./e2e/install-chaincode.js'); | ||
require('./e2e/instantiate-chaincode.js'); | ||
require('./e2e/instantiate-chaincode.js'); | ||
require('./e2e/invoke-transaction.js'); |
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