From 495be805048ee465970f34281fc639ceb71457b7 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 22 May 2012 07:57:15 -0700 Subject: [PATCH] Remove ltCLOSING, it's not needed. --- src/newcoin.proto | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/newcoin.proto b/src/newcoin.proto index c2c99811e4..17d7bde493 100644 --- a/src/newcoin.proto +++ b/src/newcoin.proto @@ -220,13 +220,12 @@ enum TMLedgerInfoType { enum TMLedgerType { ltACCEPTED = 0; ltCURRENT = 1; - ltCLOSING = 2; - ltCLOSED = 3; + ltCLOSED = 2; } message TMGetLedger { optional TMLedgerType ltype = 1; - optional bytes ledgerHash = 2; + optional bytes ledgerHash = 2; // Can also be the transaction set hash if liTS_CANDIDATE optional uint32 ledgerSeq = 3; required TMLedgerInfoType itype = 4; repeated bytes nodeIDs = 5;