-
Notifications
You must be signed in to change notification settings - Fork 283
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(connector-fabric): endorsing peers request arg #1122 #1133
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1133 +/- ##
==========================================
+ Coverage 73.14% 73.30% +0.16%
==========================================
Files 246 248 +2
Lines 8617 8782 +165
Branches 996 1025 +29
==========================================
+ Hits 6303 6438 +135
- Misses 1783 1796 +13
- Partials 531 548 +17
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
🎉 Great news! Looks like all the dependencies have been resolved:
💡 To add or remove a dependency please update this issue/PR description. Brought to you by Dependent Issues (:robot: ). Happy coding! |
7c950b0
to
2b97679
Compare
…#1122 Makes it possible to set the endorsing peers on a transaction when submitted through the Fabric connector. For example these values can be passed in to the new parameter and it will set the endorsers up accordingly prior to submitting the transaction to the ledger: - org1.example.com - Org1MSP - org2.example.com - Org2MSP (You only need either the org domain or the msp ID, no need to specify both of them for it to work). For a working example, see this test case: packages/cactus-plugin-ledger-connector-fabric/src/test/typescript/ integration/fabric-v2-2-x/run-transaction-endpoint-v1.test.ts Depends on hyperledger-cacti#1123 Depends on hyperledger-cacti#1130 Fixes hyperledger-cacti#1122 Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
Makes it possible to set the endorsing peers on a transaction
when submitted through the Fabric connector.
For example these values can be passed in to the new parameter
and it will set the endorsers up accordingly prior to submitting
the transaction to the ledger:
(You only need either the org domain or the msp ID, no need
to specify both of them for it to work).
For a working example, see this test case:
packages/cactus-plugin-ledger-connector-fabric/src/test/typescript/integration/fabric-v2-2-x/run-transaction-endpoint-v1.test.ts
Depends on #1123
Depends on #1130
Fixes #1122
Signed-off-by: Peter Somogyvari peter.somogyvari@accenture.com