Skip to content

Commit

Permalink
0.18 lnd. bump 1.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rsafier committed May 31, 2024
1 parent f0efd2d commit f8ecaed
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Docker/lnd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:stable-slim

ARG LND_VERSION=0.17.5-beta
ARG LND_VERSION=0.18.0-beta
ENV PATH=/opt/lnd:$PATH

RUN apt-get update -y \
Expand Down
15 changes: 13 additions & 2 deletions LNUnit.LND/Grpc/lightning.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4369,6 +4369,16 @@ message FeeReportResponse {
uint64 month_fee_sum = 4;
}

message InboundFee {
// The inbound base fee charged regardless of the number of milli-satoshis
// received in the channel. By default, only negative values are accepted.
int32 base_fee_msat = 1;

// The effective inbound fee rate in micro-satoshis (parts per million).
// By default, only negative values are accepted.
int32 fee_rate_ppm = 2;
}

message PolicyUpdateRequest {
oneof scope {
// If set, then this update applies to all currently active channels.
Expand Down Expand Up @@ -4402,8 +4412,9 @@ message PolicyUpdateRequest {
// If true, min_htlc_msat is applied.
bool min_htlc_msat_specified = 8;

int32 inbound_base_fee_msat = 10;
int32 inbound_fee_rate_ppm = 11;
// Optional inbound fee. If unset, the previously set value will be
// retained [EXPERIMENTAL].
InboundFee inbound_fee = 10;
}

enum UpdateFailure {
Expand Down
2 changes: 1 addition & 1 deletion LNUnit.LND/LNUnit.LND.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>LNUnit.LND</PackageId>
<Version>1.6.5</Version>
<Version>1.6.6</Version>
<PackageDescription>LNUnit LND Typed Clients</PackageDescription>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion LNUnit/LNUnit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<Version>1.6.5</Version>
<Version>1.6.6</Version>
<IsPackable>true</IsPackable>
<PackageId>LNUnit</PackageId>
<PackageDescription>Lightning Network Unit Testing Framework</PackageDescription>
Expand Down

0 comments on commit f8ecaed

Please sign in to comment.