From bfad2d9c540bcbb79cb214ec47fbd2977a1e05b8 Mon Sep 17 00:00:00 2001 From: Slyghtning Date: Mon, 6 May 2024 14:14:55 +0200 Subject: [PATCH] swapserverrpc: fix withdrawal comments --- swapserverrpc/server.pb.go | 4 ++-- swapserverrpc/server.proto | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/swapserverrpc/server.pb.go b/swapserverrpc/server.pb.go index 5bdc09f1..bc31c018 100644 --- a/swapserverrpc/server.pb.go +++ b/swapserverrpc/server.pb.go @@ -3091,9 +3091,9 @@ type ServerWithdrawRequest struct { sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - // The deposit outpoints the client wishes to close. + // The deposit outpoints the client wishes to withdraw. Outpoints []*PrevoutInfo `protobuf:"bytes,1,rep,name=outpoints,proto3" json:"outpoints,omitempty"` - // The nonces that the client used to generate the coop close tx sigs. + // The nonces that the client used to generate the withdrawal tx sigs. ClientNonces [][]byte `protobuf:"bytes,2,rep,name=client_nonces,json=clientNonces,proto3" json:"client_nonces,omitempty"` // The address that the client wants to sweep the static address deposits // to. diff --git a/swapserverrpc/server.proto b/swapserverrpc/server.proto index 5a568ae0..9dfc5f97 100644 --- a/swapserverrpc/server.proto +++ b/swapserverrpc/server.proto @@ -713,10 +713,10 @@ message ServerAddressParameters { } message ServerWithdrawRequest { - // The deposit outpoints the client wishes to close. + // The deposit outpoints the client wishes to withdraw. repeated PrevoutInfo outpoints = 1; - // The nonces that the client used to generate the coop close tx sigs. + // The nonces that the client used to generate the withdrawal tx sigs. repeated bytes client_nonces = 2; // The address that the client wants to sweep the static address deposits