routerrpc: run rpc-format on routerrpc

This commit is contained in:
carla 2020-03-20 11:11:45 +02:00
parent 4897b34050
commit 5516a53728
No known key found for this signature in database
GPG Key ID: 4CA7FE54A6213C91
2 changed files with 15 additions and 12 deletions

@ -333,8 +333,8 @@ message BuildRouteResponse {
lnrpc.Route route = 1; lnrpc.Route route = 1;
} }
message SubscribeHtlcEventsRequest {
message SubscribeHtlcEventsRequest{} }
/** /**
HtlcEvent contains the htlc event that was processed. These are served on a HtlcEvent contains the htlc event that was processed. These are served on a
@ -344,7 +344,7 @@ some events may be replayed upon restart. Events consumed from this package
should be de-duplicated by the htlc's unique combination of incoming and should be de-duplicated by the htlc's unique combination of incoming and
outgoing channel id and htlc id. [EXPERIMENTAL] outgoing channel id and htlc id. [EXPERIMENTAL]
*/ */
message HtlcEvent{ message HtlcEvent {
/** /**
The short channel id that the incoming htlc arrived at our node on. This The short channel id that the incoming htlc arrived at our node on. This
value is zero for sends. value is zero for sends.
@ -374,7 +374,7 @@ message HtlcEvent{
*/ */
uint64 timestamp_ns = 5; uint64 timestamp_ns = 5;
enum EventType{ enum EventType {
UNKNOWN = 0; UNKNOWN = 0;
SEND = 1; SEND = 1;
RECEIVE = 2; RECEIVE = 2;
@ -395,7 +395,7 @@ message HtlcEvent{
} }
} }
message HtlcInfo{ message HtlcInfo {
// The timelock on the incoming htlc. // The timelock on the incoming htlc.
uint32 incoming_timelock = 1; uint32 incoming_timelock = 1;
@ -409,16 +409,18 @@ message HtlcInfo{
uint64 outgoing_amt_msat = 4; uint64 outgoing_amt_msat = 4;
} }
message ForwardEvent{ message ForwardEvent {
// Info contains details about the htlc that was forwarded. // Info contains details about the htlc that was forwarded.
HtlcInfo info = 1; HtlcInfo info = 1;
} }
message ForwardFailEvent{} message ForwardFailEvent {
}
message SettleEvent{} message SettleEvent {
}
message LinkFailEvent{ message LinkFailEvent {
// Info contains details about the htlc that we failed. // Info contains details about the htlc that we failed.
HtlcInfo info = 1; HtlcInfo info = 1;
@ -443,7 +445,7 @@ enum FailureDetail {
LINK_NOT_ELIGIBLE = 3; LINK_NOT_ELIGIBLE = 3;
ON_CHAIN_TIMEOUT = 4; ON_CHAIN_TIMEOUT = 4;
HTLC_EXCEEDS_MAX = 5; HTLC_EXCEEDS_MAX = 5;
INSUFFICIENT_BALANCE =6; INSUFFICIENT_BALANCE = 6;
INCOMPLETE_FORWARD = 7; INCOMPLETE_FORWARD = 7;
HTLC_ADD_FAILED = 8; HTLC_ADD_FAILED = 8;
FORWARDS_DISABLED = 9; FORWARDS_DISABLED = 9;
@ -521,5 +523,6 @@ service Router {
SubscribeHtlcEvents creates a uni-directional stream from the server to SubscribeHtlcEvents creates a uni-directional stream from the server to
the client which delivers a stream of htlc events. the client which delivers a stream of htlc events.
*/ */
rpc SubscribeHtlcEvents (SubscribeHtlcEventsRequest) returns (stream HtlcEvent); rpc SubscribeHtlcEvents (SubscribeHtlcEventsRequest)
returns (stream HtlcEvent);
} }