29 lines
388 B
Protocol Buffer
29 lines
388 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./;pb";
|
|
|
|
import "chaincode.proto";
|
|
import "proposal_response.proto";
|
|
|
|
package pb;
|
|
|
|
message Transaction {
|
|
ChaincodeActionPayload Payload = 1;
|
|
}
|
|
|
|
message ChaincodeActionPayload {
|
|
ChaincodeSpec Input = 1;
|
|
repeated Endorsement Endorsements = 2;
|
|
bytes ProposalResponsePayload = 3;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|