Skip to content

Commit

Permalink
Merge pull request #81 from tendermint/feature/adrian-#68
Browse files Browse the repository at this point in the history
Comment out MessageType - 2
  • Loading branch information
adrianbrink committed May 13, 2017
2 parents d3e3eca + 577ec54 commit b662bc7
Showing 1 changed file with 1 addition and 25 deletions.
26 changes: 1 addition & 25 deletions types/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,6 @@ package types;

// This file is copied from http://github.com/tendermint/abci

//----------------------------------------
// Message types

// Not being used
// Could be added to request/response
// so we don't have to type switch
// (would be twice as fast, but we're talking about 15ns)
enum MessageType {
NullMessage = 0x00;

Echo = 0x01;
Flush = 0x02;
Info = 0x03;
SetOption = 0x04;
Exception = 0x05;
DeliverTx = 0x11;
CheckTx = 0x12;
Commit = 0x13;
Query = 0x14;
InitChain = 0x15;
BeginBlock = 0x16;
EndBlock = 0x17;
}

//----------------------------------------
// Code types

Expand Down Expand Up @@ -116,7 +92,7 @@ message RequestQuery{
bytes data = 1;
string path = 2;
uint64 height = 3;
bool prove = 4;
bool prove = 4;
}

message RequestCommit{
Expand Down

0 comments on commit b662bc7

Please sign in to comment.