mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
looprpc: exclude peers for easy autoloop
This commit is contained in:
parent
62419ab17d
commit
ea21d8d8f2
3 changed files with 694 additions and 664 deletions
1343
looprpc/client.pb.go
1343
looprpc/client.pb.go
File diff suppressed because it is too large
Load diff
|
|
@ -1280,6 +1280,13 @@ message LiquidityParameters {
|
|||
* not be able to be batched with other swaps.
|
||||
*/
|
||||
bool fast_swap_publication = 26;
|
||||
|
||||
/*
|
||||
A list of peers (their public keys) that should be excluded from the easy
|
||||
autoloop run. If set, channels connected to these peers won't be
|
||||
considered for easy autoloop swaps.
|
||||
*/
|
||||
repeated bytes easy_autoloop_excluded_peers = 27;
|
||||
}
|
||||
|
||||
message EasyAssetAutoloopParams {
|
||||
|
|
|
|||
|
|
@ -1787,6 +1787,14 @@
|
|||
"fast_swap_publication": {
|
||||
"type": "boolean",
|
||||
"description": "Set to true to enable fast swap publication. If set, the server will\npublish the HTLC immediately after receiving the swap request. This\nsetting has direct implications on the swap fees, as fast swaps may\nnot be able to be batched with other swaps."
|
||||
},
|
||||
"easy_autoloop_excluded_peers": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"format": "byte"
|
||||
},
|
||||
"description": "A list of peers (their public keys) that should be excluded from the easy\nautoloop run. If set, channels connected to these peers won't be\nconsidered for easy autoloop swaps."
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue