File tree Expand file tree Collapse file tree 5 files changed +240
-47
lines changed Expand file tree Collapse file tree 5 files changed +240
-47
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ require (
21
21
github.com/lightninglabs/pool v0.6.5-beta.0.20240604070222-e121aadb3289
22
22
github.com/lightninglabs/pool/auctioneerrpc v1.1.2
23
23
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.20240626210328-034df60aaa3d
25
25
github.com/lightningnetwork/lnd/cert v1.2.2
26
26
github.com/lightningnetwork/lnd/fn v1.1.0
27
27
github.com/lightningnetwork/lnd/kvdb v1.4.8
Original file line number Diff line number Diff line change @@ -1176,8 +1176,8 @@ github.com/lightninglabs/taproot-assets v0.3.3-0.20240625161215-838206d62c99 h1:
1176
1176
github.com/lightninglabs/taproot-assets v0.3.3-0.20240625161215-838206d62c99 /go.mod h1:KhiaNUkgI3zIYNzfUoEClJjInXt5vScmnLVIvuUzWXY =
1177
1177
github.com/lightningnetwork/lightning-onion v1.2.1-0.20230823005744-06182b1d7d2f h1:Pua7+5TcFEJXIIZ1I2YAUapmbcttmLj4TTi786bIi3s =
1178
1178
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.20240626210328-034df60aaa3d h1:G6nnSCeX+sj/1HjZYsqFJT3DfaHkYa+JtcmjKNWUR7g =
1180
+ github.com/lightningnetwork/lnd v0.18.0-beta.rc4 .0.20240626210328-034df60aaa3d /go.mod h1:L3IArArdRrWtuw+wNsUlibuGmf/08Odsm/zo3+bPXuM =
1181
1181
github.com/lightningnetwork/lnd/cert v1.2.2 h1:71YK6hogeJtxSxw2teq3eGeuy4rHGKcFf0d0Uy4qBjI =
1182
1182
github.com/lightningnetwork/lnd/cert v1.2.2 /go.mod h1:jQmFn/Ez4zhDgq2hnYSw8r35bqGVxViXhX6Cd7HXM6U =
1183
1183
github.com/lightningnetwork/lnd/clock v1.1.1 h1:OfR3/zcJd2RhH0RU+zX/77c0ZiOnIMsDIBjgjWdZgA0 =
Original file line number Diff line number Diff line change @@ -4369,6 +4369,16 @@ message FeeReportResponse {
4369
4369
uint64 month_fee_sum = 4 [jstype = JS_STRING ];
4370
4370
}
4371
4371
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
+
4372
4382
message PolicyUpdateRequest {
4373
4383
oneof scope {
4374
4384
// If set, then this update applies to all currently active channels.
@@ -4402,8 +4412,9 @@ message PolicyUpdateRequest {
4402
4412
// If true, min_htlc_msat is applied.
4403
4413
bool min_htlc_msat_specified = 8 ;
4404
4414
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 ;
4407
4418
}
4408
4419
4409
4420
enum UpdateFailure {
You can’t perform that action at this time.
0 commit comments