@@ -510,7 +510,7 @@ func (s *swapClientServer) SwapInfo(_ context.Context,
510510
511511// LoopOutTerms returns the terms that the server enforces for loop out swaps.
512512func (s * swapClientServer ) LoopOutTerms (ctx context.Context ,
513- req * clientrpc.TermsRequest ) (* clientrpc.OutTermsResponse , error ) {
513+ _ * clientrpc.TermsRequest ) (* clientrpc.OutTermsResponse , error ) {
514514
515515 log .Infof ("Loop out terms request received" )
516516
@@ -540,7 +540,9 @@ func (s *swapClientServer) LoopOutQuote(ctx context.Context,
540540 return nil , err
541541 }
542542
543- publicactionDeadline := getPublicationDeadline (req .SwapPublicationDeadline )
543+ publicactionDeadline := getPublicationDeadline (
544+ req .SwapPublicationDeadline ,
545+ )
544546
545547 quote , err := s .impl .LoopOutQuote (ctx , & loop.LoopOutQuoteRequest {
546548 Amount : btcutil .Amount (req .Amt ),
@@ -563,7 +565,7 @@ func (s *swapClientServer) LoopOutQuote(ctx context.Context,
563565
564566// GetLoopInTerms returns the terms that the server enforces for swaps.
565567func (s * swapClientServer ) GetLoopInTerms (ctx context.Context ,
566- req * clientrpc.TermsRequest ) (* clientrpc.InTermsResponse , error ) {
568+ _ * clientrpc.TermsRequest ) (* clientrpc.InTermsResponse , error ) {
567569
568570 log .Infof ("Loop in terms request received" )
569571
0 commit comments