mirror of
https://github.com/lightninglabs/loop
synced 2024-11-16 00:12:52 +00:00
87b02b7715
To itest our autolooper, we need to be able to trigger dispatch on demand. This functionality is included in a separate rpc server behind a dev flag. Since it is unlikely that we need to split loop into multiple rpc servers, this commit simply adds an additional debug server rather than opting for a full subserver setup.
24 lines
609 B
Protocol Buffer
24 lines
609 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package looprpc;
|
|
|
|
/*
|
|
Debug is a service that exposes endpoints intended for testing purposes. These
|
|
endpoints should not operate on mainnet, and should only be included if loop is
|
|
built with the dev build tag.
|
|
*/
|
|
service Debug {
|
|
/*
|
|
ForceAutoLoop is intended for *testing purposes only* and will not work on
|
|
mainnet. This endpoint ticks our autoloop timer, triggering automated
|
|
dispatch of a swap if one is suggested.
|
|
*/
|
|
rpc ForceAutoLoop(ForceAutoLoopRequest) returns (ForceAutoLoopResponse){}
|
|
}
|
|
|
|
message ForceAutoLoopRequest {
|
|
}
|
|
|
|
message ForceAutoLoopResponse {
|
|
}
|