lnrpc+itest: return channel Memo for Pending channels

In a previous PR we added a Memo field for channels that could be
specified when opening a channel. This was a reference note-to-self
with no bearing on the functioning of the channel. In that PR, the
memo value was returned only through ListChannels. This commit builds
upon that PR by also returning the Memo field for channels returned by
PendingChannels RPC.
This commit is contained in:
shaurya947
2023-05-24 23:12:30 -04:00
parent 453fbb3358
commit 44fdd02ab4
5 changed files with 1813 additions and 1773 deletions

View File

@@ -2556,6 +2556,13 @@ message PendingChannelsResponse {
// Whether this channel is advertised to the network or not.
bool private = 12;
/*
An optional note-to-self to go along with the channel containing some
useful information. This is only ever stored locally and in no way
impacts the channel's operation.
*/
string memo = 13;
}
message PendingOpenChannel {