Skip to content

Commit

Permalink
Merge pull request #93 from lightningj-org/support_0_17_4
Browse files Browse the repository at this point in the history
Support 0 17 4
  • Loading branch information
herrvendil authored Feb 20, 2024
2 parents c9c32c9 + d035897 commit 0337455
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
gradlePluginPortal()
}
dependencies {
classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.16"
classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.19"

// optional dependencies for using Spock
classpath "org.hamcrest:hamcrest-core:1.3" // only necessary if Hamcrest matchers are used
Expand All @@ -27,7 +27,7 @@ buildscript {
plugins {
id 'java-library'
id 'groovy'
id 'com.google.protobuf' version "0.8.16"
id 'com.google.protobuf' version "0.8.19"
id 'idea'
id 'project-report'
id 'org.ajoberstar.git-publish' version "3.0.1"
Expand All @@ -51,8 +51,8 @@ repositories {

dependencies {
//gRPC
implementation 'com.google.api.grpc:proto-google-common-protos:2.9.6'
implementation 'io.netty:netty-tcnative-boringssl-static:2.0.54.Final'
implementation 'com.google.api.grpc:proto-google-common-protos:2.31.0'
implementation 'io.netty:netty-tcnative-boringssl-static:2.0.62.Final'
api "io.grpc:grpc-netty-shaded:$grpcVersion"
implementation "io.grpc:grpc-protobuf:$grpcVersion"
implementation "io.grpc:grpc-stub:$grpcVersion"
Expand Down
2 changes: 2 additions & 0 deletions docs/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ to the license agreement can be found link:LICENSE.txt[here].

== Whats New

* 0.17.4-Beta : Generated against LND 0.17.4 API, updated Updated grpc to 1.61.0 and protobuf to 3.22.5,
proto-google-common-protos:2.31.0 and netty-tcnative-boringssl-static to 2.0.62.Final thanx to help from theborakompanioni.
* 0.17.2-Beta : Generated against LND 0.17.2 API
* 0.17.0-Beta : Generated against LND 0.17.0 API, upgraded to Gradle 8.1
* 0.16.2-Beta : Generated against LND 0.16.2 API, added support for ChainKit RPC Service.
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Maven Central Repository publishing, set correct data in user dir .gradle/gradle.properties
# Maven Central Repository publishing, set correct data in user dir .gradle/gradle.properties
ossrhUsername = 'set in gradle.properties'
ossrhPassword = 'set in gradle.properties'

grpcVersion=1.58.0
protobufVersion=3.21.7
grpcVersion=1.61.0
protobufVersion=3.22.5
9 changes: 8 additions & 1 deletion src/main/proto/wallet.kit.proto
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* This file is fetched from https://github.com/lightningnetwork/lnd/blob/master/lnrpc/rpc.proto
* And is distributed under LNDs MIT License.
* LND (31330f1) tag : Downloaded 2023-09-22
* LND (1ae89d6) tag : Downloaded 2024-02-19
*/
syntax = "proto3";

Expand Down Expand Up @@ -1041,6 +1041,13 @@ message ListSweepsRequest {
replaced-by-fee, so will not be included in this output.
*/
bool verbose = 1;

/*
The start height to use when fetching sweeps. If not specified (0), the
result will start from the earliest sweep. If set to -1 the result will
only include unconfirmed sweeps (at the time of the call).
*/
int32 start_height = 2;
}

message ListSweepsResponse {
Expand Down

0 comments on commit 0337455

Please sign in to comment.