Skip to content

Commit

Permalink
system channel cleanup - make HeaderType_ORDERER_TRANSACTION deprecat…
Browse files Browse the repository at this point in the history
…ed (#184)

Signed-off-by: Emil Elizarov <[email protected]>
Co-authored-by: Emil Elizarov <[email protected]>
  • Loading branch information
semil and Emil Elizarov authored May 24, 2023
1 parent bfadfac commit a319cef
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions common/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ enum HeaderType {
reserved 7, 8, 9;
reserved "PEER_RESOURCE_UPDATE", "PEER_ADMIN_OPERATION", "TOKEN_TRANSACTION";

MESSAGE = 0; // Used for messages which are signed but opaque
CONFIG = 1; // Used for messages which express the channel config
CONFIG_UPDATE = 2; // Used for transactions which update the channel config
ENDORSER_TRANSACTION = 3; // Used by the SDK to submit endorser based transactions
ORDERER_TRANSACTION = 4; // Used internally by the orderer for management
DELIVER_SEEK_INFO = 5; // Used as the type for Envelope messages submitted to instruct the Deliver API to seek
CHAINCODE_PACKAGE = 6; // Used for packaging chaincode artifacts for install
MESSAGE = 0; // Used for messages which are signed but opaque
CONFIG = 1; // Used for messages which express the channel config
CONFIG_UPDATE = 2; // Used for transactions which update the channel config
ENDORSER_TRANSACTION = 3; // Used by the SDK to submit endorser based transactions
ORDERER_TRANSACTION = 4 [deprecated = true]; // Was used internally by the orderer for management, no longer used since system channel was removed
DELIVER_SEEK_INFO = 5; // Used as the type for Envelope messages submitted to instruct the Deliver API to seek
CHAINCODE_PACKAGE = 6; // Used for packaging chaincode artifacts for install
}

// This enum enlists indexes of the block metadata array
Expand Down

0 comments on commit a319cef

Please sign in to comment.