Remove unused enum MessageTypes

This commit is contained in:
Adrian Brink 2017-05-09 12:13:28 +02:00
parent a3d4e5797d
commit 322b4e54de
1 changed files with 123 additions and 147 deletions

View File

@ -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