mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
liquidity: use easy autoloop labels
This commit is contained in:
parent
5cdf31bfc8
commit
1f72dcc095
3 changed files with 30 additions and 2 deletions
|
|
@ -1052,7 +1052,7 @@ func (m *Manager) checkExistingAutoLoops(ctx context.Context,
|
|||
var summary existingAutoLoopSummary
|
||||
|
||||
for _, out := range loopOuts {
|
||||
if out.Contract.Label != labels.AutoloopLabel(swap.TypeOut) {
|
||||
if !isAutoloopLabel(out.Contract.Label) {
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
@ -1082,7 +1082,7 @@ func (m *Manager) checkExistingAutoLoops(ctx context.Context,
|
|||
}
|
||||
|
||||
for _, in := range loopIns {
|
||||
if in.Contract.Label != labels.AutoloopLabel(swap.TypeIn) {
|
||||
if !isAutoloopLabel(in.Contract.Label) {
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
@ -1466,6 +1466,26 @@ func (m *Manager) checkSummaryInflight(
|
|||
return allowedSwaps, nil
|
||||
}
|
||||
|
||||
// isAutoloopLabel is a helper function that returns a flag indicating whether
|
||||
// the provided label corresponds to an autoloop swap.
|
||||
func isAutoloopLabel(label string) bool {
|
||||
switch label {
|
||||
case labels.AutoloopLabel(swap.TypeOut):
|
||||
return true
|
||||
|
||||
case labels.AutoloopLabel(swap.TypeIn):
|
||||
return true
|
||||
|
||||
case labels.EasyAutoloopLabel(swap.TypeOut):
|
||||
return true
|
||||
|
||||
case labels.EasyAutoloopLabel(swap.TypeIn):
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
// swapTraffic contains a summary of our current and previously failed swaps.
|
||||
type swapTraffic struct {
|
||||
ongoingLoopOut map[lnwire.ShortChannelID]bool
|
||||
|
|
|
|||
|
|
@ -118,6 +118,10 @@ func (b *loopInBuilder) buildSwap(ctx context.Context, pubkey route.Vertex,
|
|||
|
||||
if params.Autoloop {
|
||||
request.Label = labels.AutoloopLabel(swap.TypeIn)
|
||||
|
||||
if params.EasyAutoloop {
|
||||
request.Label = labels.EasyAutoloopLabel(swap.TypeIn)
|
||||
}
|
||||
}
|
||||
|
||||
return &loopInSwapSuggestion{
|
||||
|
|
|
|||
|
|
@ -150,6 +150,10 @@ func (b *loopOutBuilder) buildSwap(ctx context.Context, pubkey route.Vertex,
|
|||
if params.Autoloop {
|
||||
request.Label = labels.AutoloopLabel(swap.TypeOut)
|
||||
|
||||
if params.EasyAutoloop {
|
||||
request.Label = labels.EasyAutoloopLabel(swap.TypeOut)
|
||||
}
|
||||
|
||||
addr, err := b.cfg.Lnd.WalletKit.NextAddr(
|
||||
ctx, "", walletrpc.AddressType_WITNESS_PUBKEY_HASH,
|
||||
false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue