mirror of
https://github.com/lightninglabs/loop
synced 2024-11-13 13:10:30 +00:00
35 lines
828 B
Go
35 lines
828 B
Go
package liquidity
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/btcsuite/btcutil"
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
|
)
|
|
|
|
// LoopOutRecommendation contains the information required to recommend a loop
|
|
// out.
|
|
type LoopOutRecommendation struct {
|
|
// Amount is the total amount to swap.
|
|
Amount btcutil.Amount
|
|
|
|
// Channel is the target outgoing channel.
|
|
Channel lnwire.ShortChannelID
|
|
}
|
|
|
|
// String returns a string representation of a loop out recommendation.
|
|
func (l *LoopOutRecommendation) String() string {
|
|
return fmt.Sprintf("loop out: %v over %v", l.Amount,
|
|
l.Channel.ToUint64())
|
|
}
|
|
|
|
// newLoopOutRecommendation creates a new loop out swap.
|
|
func newLoopOutRecommendation(amount btcutil.Amount,
|
|
channelID lnwire.ShortChannelID) *LoopOutRecommendation {
|
|
|
|
return &LoopOutRecommendation{
|
|
Amount: amount,
|
|
Channel: channelID,
|
|
}
|
|
}
|