@@ -743,14 +743,14 @@ func (m *Manager) initiateLoopIn(ctx context.Context,
743743 numDeposits := uint32 (len (selectedDeposits ))
744744 quote , err := m .cfg .QuoteGetter .GetLoopInQuote (
745745 ctx , swapAmount , m .cfg .NodePubkey , req .LastHop , req .RouteHints ,
746- req .Initiator , numDeposits ,
746+ req .Initiator , numDeposits , req . Fast ,
747747 )
748748 if err != nil {
749749 return nil , fmt .Errorf ("unable to get loop in quote: %w" , err )
750750 }
751751
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.
754754 if quote .SwapFee > req .MaxSwapFee {
755755 log .Warnf ("Swap fee %v exceeding maximum of %v" ,
756756 quote .SwapFee , req .MaxSwapFee )
@@ -774,6 +774,7 @@ func (m *Manager) initiateLoopIn(ctx context.Context,
774774 QuotedSwapFee : quote .SwapFee ,
775775 MaxSwapFee : req .MaxSwapFee ,
776776 PaymentTimeoutSeconds : paymentTimeoutSeconds ,
777+ Fast : req .Fast ,
777778 }
778779 if req .LastHop != nil {
779780 swap .LastHop = req .LastHop [:]
0 commit comments