Skip to content

Commit 7805c4d

Browse files
committed
mod: bump to latest lnd version
1 parent af20f51 commit 7805c4d

File tree

5 files changed

+240
-47
lines changed

5 files changed

+240
-47
lines changed

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

Lines changed: 29 additions & 7 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: 195 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ require (
2121
github.com/lightninglabs/pool v0.6.5-beta.0.20240604070222-e121aadb3289
2222
github.com/lightninglabs/pool/auctioneerrpc v1.1.2
2323
github.com/lightninglabs/taproot-assets v0.3.3-0.20240625161215-838206d62c99
24-
github.com/lightningnetwork/lnd v0.18.0-beta.rc3.0.20240625154246-4e968d9b520c
24+
github.com/lightningnetwork/lnd v0.18.0-beta.rc4.0.20240626200113-a460d683f3ea
2525
github.com/lightningnetwork/lnd/cert v1.2.2
2626
github.com/lightningnetwork/lnd/fn v1.1.0
2727
github.com/lightningnetwork/lnd/kvdb v1.4.8

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,8 +1176,8 @@ github.com/lightninglabs/taproot-assets v0.3.3-0.20240625161215-838206d62c99 h1:
11761176
github.com/lightninglabs/taproot-assets v0.3.3-0.20240625161215-838206d62c99/go.mod h1:KhiaNUkgI3zIYNzfUoEClJjInXt5vScmnLVIvuUzWXY=
11771177
github.com/lightningnetwork/lightning-onion v1.2.1-0.20230823005744-06182b1d7d2f h1:Pua7+5TcFEJXIIZ1I2YAUapmbcttmLj4TTi786bIi3s=
11781178
github.com/lightningnetwork/lightning-onion v1.2.1-0.20230823005744-06182b1d7d2f/go.mod h1:c0kvRShutpj3l6B9WtTsNTBUtjSmjZXbJd9ZBRQOSKI=
1179-
github.com/lightningnetwork/lnd v0.18.0-beta.rc3.0.20240625154246-4e968d9b520c h1:10hVKzgsnpuzOOgkYAhThUtDiq3fBBJBeZWdir+0ptk=
1180-
github.com/lightningnetwork/lnd v0.18.0-beta.rc3.0.20240625154246-4e968d9b520c/go.mod h1:L3IArArdRrWtuw+wNsUlibuGmf/08Odsm/zo3+bPXuM=
1179+
github.com/lightningnetwork/lnd v0.18.0-beta.rc4.0.20240626200113-a460d683f3ea h1:ma/IS/fH1zSDzVmGbUlrXjC0EDi8zTgVp7Nfhf7IQtk=
1180+
github.com/lightningnetwork/lnd v0.18.0-beta.rc4.0.20240626200113-a460d683f3ea/go.mod h1:L3IArArdRrWtuw+wNsUlibuGmf/08Odsm/zo3+bPXuM=
11811181
github.com/lightningnetwork/lnd/cert v1.2.2 h1:71YK6hogeJtxSxw2teq3eGeuy4rHGKcFf0d0Uy4qBjI=
11821182
github.com/lightningnetwork/lnd/cert v1.2.2/go.mod h1:jQmFn/Ez4zhDgq2hnYSw8r35bqGVxViXhX6Cd7HXM6U=
11831183
github.com/lightningnetwork/lnd/clock v1.1.1 h1:OfR3/zcJd2RhH0RU+zX/77c0ZiOnIMsDIBjgjWdZgA0=

proto/lnd.proto

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4369,6 +4369,16 @@ message FeeReportResponse {
43694369
uint64 month_fee_sum = 4 [jstype = JS_STRING];
43704370
}
43714371

4372+
message InboundFee {
4373+
// The inbound base fee charged regardless of the number of milli-satoshis
4374+
// received in the channel. By default, only negative values are accepted.
4375+
int32 base_fee_msat = 1;
4376+
4377+
// The effective inbound fee rate in micro-satoshis (parts per million).
4378+
// By default, only negative values are accepted.
4379+
int32 fee_rate_ppm = 2;
4380+
}
4381+
43724382
message PolicyUpdateRequest {
43734383
oneof scope {
43744384
// If set, then this update applies to all currently active channels.
@@ -4402,8 +4412,9 @@ message PolicyUpdateRequest {
44024412
// If true, min_htlc_msat is applied.
44034413
bool min_htlc_msat_specified = 8;
44044414

4405-
int32 inbound_base_fee_msat = 10;
4406-
int32 inbound_fee_rate_ppm = 11;
4415+
// Optional inbound fee. If unset, the previously set value will be
4416+
// retained [EXPERIMENTAL].
4417+
InboundFee inbound_fee = 10;
44074418
}
44084419

44094420
enum UpdateFailure {

0 commit comments

Comments
 (0)