Skip to content

Commit

Permalink
fix commas to semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
daywalker90 authored and cdecker committed May 20, 2023
1 parent 0ea7cb2 commit e2535e7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions cln-grpc/proto/primitives.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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 {}
Expand Down

0 comments on commit e2535e7

Please sign in to comment.