@@ -19,7 +19,7 @@ import (
1919 "github.com/lightninglabs/loop/staticaddr/deposit"
2020 "github.com/lightninglabs/loop/staticaddr/version"
2121 "github.com/lightninglabs/loop/swap"
22- looprpc "github.com/lightninglabs/loop/swapserverrpc"
22+ "github.com/lightninglabs/loop/swapserverrpc"
2323 "github.com/lightningnetwork/lnd/chainntnfs"
2424 "github.com/lightningnetwork/lnd/input"
2525 "github.com/lightningnetwork/lnd/invoices"
@@ -117,7 +117,7 @@ func (f *FSM) InitHtlcAction(ctx context.Context,
117117 version .CurrentRPCProtocolVersion (),
118118 )
119119
120- loopInReq := & looprpc .ServerStaticAddressLoopInRequest {
120+ loopInReq := & swapserverrpc .ServerStaticAddressLoopInRequest {
121121 SwapHash : f .loopIn .SwapHash [:],
122122 DepositOutpoints : f .loopIn .DepositOutpoints ,
123123 HtlcClientPubKey : f .loopIn .ClientPubkey .SerializeCompressed (),
@@ -144,7 +144,7 @@ func (f *FSM) InitHtlcAction(ctx context.Context,
144144 // attempt.
145145 pushEmptySigs := func () {
146146 _ , err = f .cfg .Server .PushStaticAddressHtlcSigs (
147- ctx , & looprpc .PushStaticAddressHtlcSigsRequest {
147+ ctx , & swapserverrpc .PushStaticAddressHtlcSigsRequest {
148148 SwapHash : f .loopIn .SwapHash [:],
149149 },
150150 )
@@ -382,17 +382,17 @@ func (f *FSM) SignHtlcTxAction(ctx context.Context,
382382 }
383383
384384 // Push htlc tx sigs to server.
385- pushHtlcReq := & looprpc .PushStaticAddressHtlcSigsRequest {
385+ pushHtlcReq := & swapserverrpc .PushStaticAddressHtlcSigsRequest {
386386 SwapHash : f .loopIn .SwapHash [:],
387- StandardHtlcInfo : & looprpc .ClientHtlcSigningInfo {
387+ StandardHtlcInfo : & swapserverrpc .ClientHtlcSigningInfo {
388388 Nonces : clientHtlcNonces ,
389389 Sigs : htlcSigs ,
390390 },
391- HighFeeHtlcInfo : & looprpc .ClientHtlcSigningInfo {
391+ HighFeeHtlcInfo : & swapserverrpc .ClientHtlcSigningInfo {
392392 Nonces : highFeeNonces ,
393393 Sigs : htlcSigsHighFee ,
394394 },
395- ExtremeFeeHtlcInfo : & looprpc .ClientHtlcSigningInfo {
395+ ExtremeFeeHtlcInfo : & swapserverrpc .ClientHtlcSigningInfo {
396396 Nonces : extremelyHighNonces ,
397397 Sigs : htlcSigsExtremelyHighFee ,
398398 },
0 commit comments