Skip to content

Commit

Permalink
feat(connector-fabric): endorsing peers request arg hyperledger-cacti…
Browse files Browse the repository at this point in the history
…#1122

WORK IN PROGRESS

Depends on hyperledger-cacti#1123

Fixes hyperledger-cacti#1122

Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
  • Loading branch information
petermetz committed Jul 13, 2021
1 parent b6f3b89 commit 3c8f800
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,16 @@
"params"
],
"properties": {
"endorsingPeers": {
"description": "An array of MSP IDs to set as the list of endorsing peers for the transaction.",
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"maxLength": 4096,
"nullable": false
}
},
"transientData": {
"type": "object",
"nullable": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,12 @@ export interface InlineResponse501 {
* @interface RunTransactionRequest
*/
export interface RunTransactionRequest {
/**
* An array of MSP IDs to set as the list of endorsing peers for the transaction.
* @type {Array<string>}
* @memberof RunTransactionRequest
*/
endorsingPeers?: Array<string>;
/**
*
* @type {object}
Expand Down

0 comments on commit 3c8f800

Please sign in to comment.