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 (
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.20240626210328-034df60aaa3d
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
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:
11761176github.com/lightninglabs/taproot-assets v0.3.3-0.20240625161215-838206d62c99 /go.mod h1:KhiaNUkgI3zIYNzfUoEClJjInXt5vScmnLVIvuUzWXY =
11771177github.com/lightningnetwork/lightning-onion v1.2.1-0.20230823005744-06182b1d7d2f h1:Pua7+5TcFEJXIIZ1I2YAUapmbcttmLj4TTi786bIi3s =
11781178github.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 =
11811181github.com/lightningnetwork/lnd/cert v1.2.2 h1:71YK6hogeJtxSxw2teq3eGeuy4rHGKcFf0d0Uy4qBjI =
11821182github.com/lightningnetwork/lnd/cert v1.2.2 /go.mod h1:jQmFn/Ez4zhDgq2hnYSw8r35bqGVxViXhX6Cd7HXM6U =
11831183github.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 {
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+
43724382message 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
44094420enum UpdateFailure {
You can’t perform that action at this time.
0 commit comments