Skip to content

Commit 9870834

Browse files
committed
app+proto: update protos for new lnd version
1 parent 10b201e commit 9870834

File tree

4 files changed

+71
-3
lines changed

4 files changed

+71
-3
lines changed

app/src/types/generated/lnd_pb.d.ts

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/types/generated/lnd_pb.js

Lines changed: 56 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/util/tests/sampleData.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,11 @@ export const lndChannelEvent: Required<LND.ChannelEventUpdate.AsObject> = {
281281
fundingTxidStr: '',
282282
outputIndex: outIndex,
283283
},
284+
channelFundingTimeout: {
285+
fundingTxidBytes: txIdBytes,
286+
fundingTxidStr: '',
287+
outputIndex: outIndex,
288+
},
284289
};
285290

286291
export const lndTransaction: LND.Transaction.AsObject = {

proto/lnd.proto

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2980,6 +2980,7 @@ message ChannelEventUpdate {
29802980
ChannelPoint inactive_channel = 4;
29812981
PendingUpdate pending_open_channel = 6;
29822982
ChannelPoint fully_resolved_channel = 7;
2983+
ChannelPoint channel_funding_timeout = 8;
29832984
}
29842985

29852986
enum UpdateType {
@@ -2989,6 +2990,7 @@ message ChannelEventUpdate {
29892990
INACTIVE_CHANNEL = 3;
29902991
PENDING_OPEN_CHANNEL = 4;
29912992
FULLY_RESOLVED_CHANNEL = 5;
2993+
CHANNEL_FUNDING_TIMEOUT = 6;
29922994
}
29932995

29942996
UpdateType type = 5;

0 commit comments

Comments
 (0)