lnrpc+rpcserver: add new fully resolved chan update event

This commit adds the new channel update event for a channel that is now
fully resolved to the event subscription RPC.
This commit is contained in:
Oliver Gugger
2021-08-09 13:55:34 +02:00
parent 5917486dc9
commit 06a693f10e
4 changed files with 1651 additions and 1606 deletions

View File

@@ -2249,6 +2249,7 @@ message ChannelEventUpdate {
ChannelPoint active_channel = 3;
ChannelPoint inactive_channel = 4;
PendingUpdate pending_open_channel = 6;
ChannelPoint fully_resolved_channel = 7;
}
enum UpdateType {
@@ -2257,6 +2258,7 @@ message ChannelEventUpdate {
ACTIVE_CHANNEL = 2;
INACTIVE_CHANNEL = 3;
PENDING_OPEN_CHANNEL = 4;
FULLY_RESOLVED_CHANNEL = 5;
}
UpdateType type = 5;