Merge pull request #4282 from carlaKC/walletrpc-comments
lnrpc: remove double asterix comments
This commit is contained in:
commit
4e93d3036d
@ -385,7 +385,7 @@ func (m *SignResp) GetRawSigs() [][]byte {
|
|||||||
type InputScript struct {
|
type InputScript struct {
|
||||||
// The serializes witness stack for the specified input.
|
// The serializes witness stack for the specified input.
|
||||||
Witness [][]byte `protobuf:"bytes,1,rep,name=witness,proto3" json:"witness,omitempty"`
|
Witness [][]byte `protobuf:"bytes,1,rep,name=witness,proto3" json:"witness,omitempty"`
|
||||||
//*
|
//
|
||||||
//The optional sig script for the specified witness that will only be set if
|
//The optional sig script for the specified witness that will only be set if
|
||||||
//the input specified is a nested p2sh witness program.
|
//the input specified is a nested p2sh witness program.
|
||||||
SigScript []byte `protobuf:"bytes,2,opt,name=sig_script,json=sigScript,proto3" json:"sig_script,omitempty"`
|
SigScript []byte `protobuf:"bytes,2,opt,name=sig_script,json=sigScript,proto3" json:"sig_script,omitempty"`
|
||||||
|
@ -167,7 +167,7 @@ message InputScript {
|
|||||||
// The serializes witness stack for the specified input.
|
// The serializes witness stack for the specified input.
|
||||||
repeated bytes witness = 1;
|
repeated bytes witness = 1;
|
||||||
|
|
||||||
/**
|
/*
|
||||||
The optional sig script for the specified witness that will only be set if
|
The optional sig script for the specified witness that will only be set if
|
||||||
the input specified is a nested p2sh witness program.
|
the input specified is a nested p2sh witness program.
|
||||||
*/
|
*/
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
"sig_script": {
|
"sig_script": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"format": "byte",
|
"format": "byte",
|
||||||
"description": "*\nThe optional sig script for the specified witness that will only be set if\nthe input specified is a nested p2sh witness program."
|
"description": "The optional sig script for the specified witness that will only be set if\nthe input specified is a nested p2sh witness program."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -1156,7 +1156,7 @@ type WalletKitClient interface {
|
|||||||
//fee preference being provided. For now, the responsibility of ensuring that
|
//fee preference being provided. For now, the responsibility of ensuring that
|
||||||
//the new fee preference is sufficient is delegated to the user.
|
//the new fee preference is sufficient is delegated to the user.
|
||||||
BumpFee(ctx context.Context, in *BumpFeeRequest, opts ...grpc.CallOption) (*BumpFeeResponse, error)
|
BumpFee(ctx context.Context, in *BumpFeeRequest, opts ...grpc.CallOption) (*BumpFeeResponse, error)
|
||||||
//*
|
//
|
||||||
//ListSweeps returns a list of the sweep transactions our node has produced.
|
//ListSweeps returns a list of the sweep transactions our node has produced.
|
||||||
//Note that these sweeps may not be confirmed yet, as we record sweeps on
|
//Note that these sweeps may not be confirmed yet, as we record sweeps on
|
||||||
//broadcast, not confirmation.
|
//broadcast, not confirmation.
|
||||||
@ -1319,7 +1319,7 @@ type WalletKitServer interface {
|
|||||||
//fee preference being provided. For now, the responsibility of ensuring that
|
//fee preference being provided. For now, the responsibility of ensuring that
|
||||||
//the new fee preference is sufficient is delegated to the user.
|
//the new fee preference is sufficient is delegated to the user.
|
||||||
BumpFee(context.Context, *BumpFeeRequest) (*BumpFeeResponse, error)
|
BumpFee(context.Context, *BumpFeeRequest) (*BumpFeeResponse, error)
|
||||||
//*
|
//
|
||||||
//ListSweeps returns a list of the sweep transactions our node has produced.
|
//ListSweeps returns a list of the sweep transactions our node has produced.
|
||||||
//Note that these sweeps may not be confirmed yet, as we record sweeps on
|
//Note that these sweeps may not be confirmed yet, as we record sweeps on
|
||||||
//broadcast, not confirmation.
|
//broadcast, not confirmation.
|
||||||
|
@ -91,7 +91,7 @@ service WalletKit {
|
|||||||
*/
|
*/
|
||||||
rpc BumpFee (BumpFeeRequest) returns (BumpFeeResponse);
|
rpc BumpFee (BumpFeeRequest) returns (BumpFeeResponse);
|
||||||
|
|
||||||
/**
|
/*
|
||||||
ListSweeps returns a list of the sweep transactions our node has produced.
|
ListSweeps returns a list of the sweep transactions our node has produced.
|
||||||
Note that these sweeps may not be confirmed yet, as we record sweeps on
|
Note that these sweeps may not be confirmed yet, as we record sweeps on
|
||||||
broadcast, not confirmation.
|
broadcast, not confirmation.
|
||||||
|
Loading…
Reference in New Issue
Block a user