@@ -32,6 +32,50 @@ type mockStaticAddressClient struct {
3232 mock.Mock
3333}
3434
35+ func (m * mockStaticAddressClient ) ServerStaticAddressLoopIn (ctx context.Context ,
36+ in * swapserverrpc.ServerStaticAddressLoopInRequest ,
37+ opts ... grpc.CallOption ) (
38+ * swapserverrpc.ServerStaticAddressLoopInResponse , error ) {
39+
40+ args := m .Called (ctx , in , opts )
41+
42+ return args .Get (0 ).(* swapserverrpc.ServerStaticAddressLoopInResponse ),
43+ args .Error (1 )
44+ }
45+
46+ func (m * mockStaticAddressClient ) PushStaticAddressSweeplessSigs (ctx context.Context ,
47+ in * swapserverrpc.PushStaticAddressSweeplessSigsRequest ,
48+ opts ... grpc.CallOption ) (
49+ * swapserverrpc.PushStaticAddressSweeplessSigsResponse , error ) {
50+
51+ args := m .Called (ctx , in , opts )
52+
53+ return args .Get (0 ).(* swapserverrpc.PushStaticAddressSweeplessSigsResponse ),
54+ args .Error (1 )
55+ }
56+
57+ func (m * mockStaticAddressClient ) FetchSweeplessSweepTx (ctx context.Context ,
58+ in * swapserverrpc.FetchSweeplessSweepTxRequest ,
59+ opts ... grpc.CallOption ) (
60+ * swapserverrpc.FetchSweeplessSweepTxResponse , error ) {
61+
62+ args := m .Called (ctx , in , opts )
63+
64+ return args .Get (0 ).(* swapserverrpc.FetchSweeplessSweepTxResponse ),
65+ args .Error (1 )
66+ }
67+
68+ func (m * mockStaticAddressClient ) PushStaticAddressHtlcSigs (ctx context.Context ,
69+ in * swapserverrpc.PushStaticAddressHtlcSigsRequest ,
70+ opts ... grpc.CallOption ) (
71+ * swapserverrpc.PushStaticAddressHtlcSigsResponse , error ) {
72+
73+ args := m .Called (ctx , in , opts )
74+
75+ return args .Get (0 ).(* swapserverrpc.PushStaticAddressHtlcSigsResponse ),
76+ args .Error (1 )
77+ }
78+
3579func (m * mockStaticAddressClient ) ServerWithdrawDeposits (ctx context.Context ,
3680 in * swapserverrpc.ServerWithdrawRequest ,
3781 opts ... grpc.CallOption ) (* swapserverrpc.ServerWithdrawResponse ,
0 commit comments