fix commas to semicolons

This commit is contained in:
daywalker90 2023-05-18 02:39:50 +02:00 committed by Christian Decker
parent 0ea7cb2484
commit e2535e73bc

View File

@ -50,15 +50,15 @@ enum HtlcState {
SentRemoveRevocation = 8;
SentRemoveAckCommit = 9;
RcvdRemoveAckRevocation = 10;
RCVD_ADD_HTLC = 11,
RCVD_ADD_COMMIT = 12,
SENT_ADD_REVOCATION = 13,
SENT_ADD_ACK_COMMIT = 14,
SENT_REMOVE_HTLC = 15,
SENT_REMOVE_COMMIT = 16,
RCVD_REMOVE_REVOCATION = 17,
RCVD_REMOVE_ACK_COMMIT = 18,
SENT_REMOVE_ACK_REVOCATION = 19,
RCVD_ADD_HTLC = 11;
RCVD_ADD_COMMIT = 12;
SENT_ADD_REVOCATION = 13;
SENT_ADD_ACK_COMMIT = 14;
SENT_REMOVE_HTLC = 15;
SENT_REMOVE_COMMIT = 16;
RCVD_REMOVE_REVOCATION = 17;
RCVD_REMOVE_ACK_COMMIT = 18;
SENT_REMOVE_ACK_REVOCATION = 19;
}
message ChannelStateChangeCause {}