Skip to content
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

Remove EndorseResponse.result field #69

Merged
merged 1 commit into from
Nov 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions gateway/gateway.proto
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,9 @@ message EndorseRequest {

// EndorseResponse returns the result of endorsing a transaction.
message EndorseResponse {
// The response that is returned by the transaction function, as defined
// in peer/proposal_response.proto.
protos.Response result = 1;
// The unsigned set of transaction responses from the endorsing peers for signing by the client
// before submitting to ordering service (via gateway).
common.Envelope prepared_transaction = 2;
common.Envelope prepared_transaction = 1;
}

// SubmitRequest contains the details required to submit a transaction (update the ledger).
Expand Down Expand Up @@ -206,7 +203,4 @@ message PreparedTransaction {
string transaction_id = 1;
// The transaction envelope.
common.Envelope envelope = 2;
// The response that is returned by the transaction function during endorsement, as defined
// in peer/proposal_response.proto
protos.Response result = 3;
}