routerrpc: run rpc-format on routerrpc

This commit is contained in:
carla
2020-03-20 11:11:45 +02:00
parent 4897b34050
commit 5516a53728
2 changed files with 15 additions and 12 deletions

View File

@@ -333,8 +333,8 @@ message BuildRouteResponse {
lnrpc.Route route = 1;
}
message SubscribeHtlcEventsRequest{}
message SubscribeHtlcEventsRequest {
}
/**
HtlcEvent contains the htlc event that was processed. These are served on a
@@ -414,9 +414,11 @@ message ForwardEvent{
HtlcInfo info = 1;
}
message ForwardFailEvent{}
message ForwardFailEvent {
}
message SettleEvent{}
message SettleEvent {
}
message LinkFailEvent {
// Info contains details about the htlc that we failed.
@@ -521,5 +523,6 @@ service Router {
SubscribeHtlcEvents creates a uni-directional stream from the server to
the client which delivers a stream of htlc events.
*/
rpc SubscribeHtlcEvents (SubscribeHtlcEventsRequest) returns (stream HtlcEvent);
rpc SubscribeHtlcEvents (SubscribeHtlcEventsRequest)
returns (stream HtlcEvent);
}