@@ -743,14 +743,14 @@ func (m *Manager) initiateLoopIn(ctx context.Context,
743
743
numDeposits := uint32 (len (selectedDeposits ))
744
744
quote , err := m .cfg .QuoteGetter .GetLoopInQuote (
745
745
ctx , swapAmount , m .cfg .NodePubkey , req .LastHop , req .RouteHints ,
746
- req .Initiator , numDeposits ,
746
+ req .Initiator , numDeposits , req . Fast ,
747
747
)
748
748
if err != nil {
749
749
return nil , fmt .Errorf ("unable to get loop in quote: %w" , err )
750
750
}
751
751
752
- // If the previously accepted quote fee is lower than what is quoted now
753
- // we abort the swap.
752
+ // If the previously accepted quote fee is lower than what is quoted, we
753
+ // abort the swap.
754
754
if quote .SwapFee > req .MaxSwapFee {
755
755
log .Warnf ("Swap fee %v exceeding maximum of %v" ,
756
756
quote .SwapFee , req .MaxSwapFee )
@@ -774,6 +774,7 @@ func (m *Manager) initiateLoopIn(ctx context.Context,
774
774
QuotedSwapFee : quote .SwapFee ,
775
775
MaxSwapFee : req .MaxSwapFee ,
776
776
PaymentTimeoutSeconds : paymentTimeoutSeconds ,
777
+ Fast : req .Fast ,
777
778
}
778
779
if req .LastHop != nil {
779
780
swap .LastHop = req .LastHop [:]
0 commit comments