Skip to content

Commit 981f682

Browse files
authored
Merge pull request #141 from TheBlueMatt/main
LDK 0.0.118
2 parents d48ed4f + 053878b commit 981f682

File tree

604 files changed

+28666
-17154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

604 files changed

+28666
-17154
lines changed

.github/workflows/build.yml

+29-26
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040
# Note this is a different endpoint, as we need one non-upstream commit!
4141
git clone https://github.com/lightningdevkit/rust-lightning
4242
cd rust-lightning
43-
git checkout origin/0.0.117-bindings
43+
git checkout origin/0.0.118-bindings
4444
cd ..
4545
git clone https://github.com/lightningdevkit/ldk-c-bindings
4646
cd ldk-c-bindings
47-
git checkout 0.0.117
47+
git checkout 0.0.118
4848
cd lightning-c-bindings
4949
cargo update -p memchr --precise "2.5.0" --verbose
5050
- name: Rebuild C bindings without STD
@@ -108,15 +108,15 @@ jobs:
108108
runs-on: ubuntu-latest
109109
# Ubuntu's version of rustc uses its own LLVM instead of being a real native package.
110110
# This leaves us with an incompatible LLVM version when linking. Instead, use a real OS.
111-
container: debian:bullseye
111+
container: debian:bookworm
112112
strategy:
113113
fail-fast: false
114114
steps:
115115
- name: Install native Rust toolchain, Valgrind, and build utilitis
116116
run: |
117117
apt-get update
118118
apt-get -y dist-upgrade
119-
apt-get -y install cargo valgrind lld git g++ clang openjdk-11-jdk maven faketime zip unzip llvm curl
119+
apt-get -y install cargo valgrind lld git g++ clang openjdk-17-jdk maven faketime zip unzip llvm curl
120120
- name: Checkout source code
121121
uses: actions/checkout@v2
122122
with:
@@ -136,11 +136,11 @@ jobs:
136136
# Note this is a different endpoint, as we need one non-upstream commit!
137137
git clone https://github.com/lightningdevkit/rust-lightning
138138
cd rust-lightning
139-
git checkout origin/0.0.117-bindings
139+
git checkout origin/0.0.118-bindings
140140
cd ..
141141
git clone https://github.com/lightningdevkit/ldk-c-bindings
142142
cd ldk-c-bindings
143-
git checkout 0.0.117
143+
git checkout 0.0.118
144144
cd lightning-c-bindings
145145
cargo update -p memchr --precise "2.5.0" --verbose
146146
- name: Pin proc-macro and quote to meet MSRV
@@ -153,15 +153,15 @@ jobs:
153153
cd ldk-c-bindings
154154
./genbindings.sh ../rust-lightning true
155155
- name: Build Java Debug Bindings
156-
run: ./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-11-openjdk-amd64/include/ -I/usr/lib/jvm/java-11-openjdk-amd64/include/linux/" true false
156+
run: ./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-17-openjdk-amd64/include/ -I/usr/lib/jvm/java-17-openjdk-amd64/include/linux/" true false
157157
- name: Run Java Tests against Debug Bindings
158158
run: |
159159
mv liblightningjni_debug_Linux-amd64.so liblightningjni.so
160160
export ASAN_OPTIONS=detect_leaks=0
161-
LD_PRELOAD=/usr/lib/llvm-11/lib/clang/11.0.1/lib/linux/libclang_rt.asan-x86_64.so LD_LIBRARY_PATH=. mvn test
161+
LD_PRELOAD=/usr/lib/llvm-14/lib/clang/14.0.6/lib/linux/libclang_rt.asan-x86_64.so LD_LIBRARY_PATH=. mvn test
162162
- name: Build Java Release Bindings
163163
run: |
164-
./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-11-openjdk-amd64/include/ -I/usr/lib/jvm/java-11-openjdk-amd64/include/linux/" false false
164+
./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-17-openjdk-amd64/include/ -I/usr/lib/jvm/java-17-openjdk-amd64/include/linux/" false false
165165
- name: Check latest headers are in git
166166
run: |
167167
git checkout pom.xml
@@ -171,15 +171,15 @@ jobs:
171171
runs-on: ubuntu-latest
172172
# Ubuntu's version of rustc uses its own LLVM instead of being a real native package.
173173
# This leaves us with an incompatible LLVM version when linking. Instead, use a real OS.
174-
container: debian:bullseye
174+
container: debian:bookworm
175175
strategy:
176176
fail-fast: false
177177
steps:
178178
- name: Install native Rust toolchain, Valgrind, and build utilitis
179179
run: |
180180
apt-get update
181181
apt-get -y dist-upgrade
182-
apt-get -y install cargo valgrind lld git g++ clang openjdk-11-jdk maven faketime zip unzip llvm curl
182+
apt-get -y install cargo valgrind lld git g++ clang openjdk-17-jdk maven faketime zip unzip llvm curl
183183
- name: Checkout source code
184184
uses: actions/checkout@v2
185185
with:
@@ -199,11 +199,11 @@ jobs:
199199
# Note this is a different endpoint, as we need one non-upstream commit!
200200
git clone https://github.com/lightningdevkit/rust-lightning
201201
cd rust-lightning
202-
git checkout origin/0.0.117-bindings
202+
git checkout origin/0.0.118-bindings
203203
cd ..
204204
git clone https://github.com/lightningdevkit/ldk-c-bindings
205205
cd ldk-c-bindings
206-
git checkout 0.0.117
206+
git checkout 0.0.118
207207
cd lightning-c-bindings
208208
cargo update -p memchr --precise "2.5.0" --verbose
209209
- name: Pin proc-macro and quote to meet MSRV
@@ -238,7 +238,7 @@ jobs:
238238
- name: Build Leaktracking Java Release Bindings
239239
run: |
240240
export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
241-
./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-11-openjdk-amd64/include/ -I/usr/lib/jvm/java-11-openjdk-amd64/include/linux/" leaks false
241+
./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-17-openjdk-amd64/include/ -I/usr/lib/jvm/java-17-openjdk-amd64/include/linux/" leaks false
242242
- name: Build deterministic release jar
243243
run: |
244244
./build-release-jar.sh
@@ -248,30 +248,33 @@ jobs:
248248
run: |
249249
export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
250250
cp "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/liblightningjni_MacOSX-"{aarch64,x86_64}.nativelib src/main/resources/
251+
- name: Build Java leaktracking Bindings
252+
run: |
253+
export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
254+
./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-17-openjdk-amd64/include/ -I/usr/lib/jvm/java-17-openjdk-amd64/include/linux/" leaks false
255+
mkdir ldk-java-bins/new/
256+
cp src/main/resources/liblightningjni_Linux-amd64.nativelib ldk-java-bins/new/liblightningjni_Linux-amd64-leaktracking.nativelib
251257
- name: Build Java Release Bindings
252258
run: |
253259
export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
254-
./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-11-openjdk-amd64/include/ -I/usr/lib/jvm/java-11-openjdk-amd64/include/linux/" false false
260+
./genbindings.sh ./ldk-c-bindings/ "-I/usr/lib/jvm/java-17-openjdk-amd64/include/ -I/usr/lib/jvm/java-17-openjdk-amd64/include/linux/" false false
255261
- name: Build deterministic release jar
256262
run: ./build-release-jar.sh
257263
- name: Check latest library and jars are in bins repo
258264
run: |
259265
export LDK_GARBAGECOLLECTED_GIT_OVERRIDE="$(git describe --tag HEAD)"
260-
mkdir ldk-java-bins/new/
261266
cp "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/"liblightningjni_Mac*.nativelib ldk-java-bins/new/
262267
cp "ldk-java-bins/${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/"LDK-release.aar ldk-java-bins/new/
263268
cp src/main/resources/liblightningjni_Linux-amd64.nativelib ldk-java-bins/new/
264269
cp ldk-java-sources.jar ldk-java-bins/new/
265270
cp ldk-java.jar ldk-java-bins/new/
266271
cp ldk-java-leaktracking.jar ldk-java-bins/new/
267272
cp ldk-java-classes.jar ldk-java-bins/new/
268-
cp ldk-java-javadoc.jar ldk-java-bins/new/
269273
cd ldk-java-bins
270274
rm "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/liblightningjs.wasm" # TODO: Test this
271275
if ! diff -r "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/" new/; then
272276
apt-get -y install diffoscope
273277
diffoscope new/ldk-java-sources.jar "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/ldk-java-sources.jar" || echo
274-
diffoscope new/ldk-java-javadoc.jar "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/ldk-java-javadoc.jar" || echo
275278
diffoscope new/ldk-java-classes.jar "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/ldk-java-classes.jar" || echo
276279
diffoscope new/ldk-java.jar "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/ldk-java.jar" || echo
277280
diffoscope new/ldk-java-leaktracking.jar "${LDK_GARBAGECOLLECTED_GIT_OVERRIDE}/ldk-java-leaktracking.jar" || echo
@@ -316,11 +319,11 @@ jobs:
316319
# Note this is a different endpoint, as we need one non-upstream commit!
317320
git clone https://github.com/lightningdevkit/rust-lightning
318321
cd rust-lightning
319-
git checkout origin/0.0.117-bindings
322+
git checkout origin/0.0.118-bindings
320323
cd ..
321324
git clone https://github.com/lightningdevkit/ldk-c-bindings
322325
cd ldk-c-bindings
323-
git checkout 0.0.117
326+
git checkout 0.0.118
324327
- name: Fetch MacOS SDK
325328
run: |
326329
curl -o Xcode-12.2-12B45b-extracted-SDK-with-libcxx-headers.tar.gz https://bitcoincore.org/depends-sources/sdks/Xcode-12.2-12B45b-extracted-SDK-with-libcxx-headers.tar.gz
@@ -409,15 +412,15 @@ jobs:
409412
android:
410413
runs-on: ubuntu-latest
411414
# Frankly, I'm not really sure why debian and ubuntu differ in the results here, they really shouldn't
412-
container: debian:bullseye
415+
container: debian:bookworm
413416
strategy:
414417
fail-fast: false
415418
steps:
416419
- name: Install rust targets
417420
run: |
418421
apt-get update
419422
apt-get -y dist-upgrade
420-
apt-get -y install git g++ clang faketime zip unzip curl openjdk-11-jdk
423+
apt-get -y install git g++ clang faketime zip unzip curl openjdk-17-jdk
421424
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh
422425
chmod +x ./rustup.sh
423426
./rustup.sh -y
@@ -453,11 +456,11 @@ jobs:
453456
# Note this is a different endpoint, as we need one non-upstream commit!
454457
git clone https://github.com/lightningdevkit/rust-lightning
455458
cd rust-lightning
456-
git checkout origin/0.0.117-bindings
459+
git checkout origin/0.0.118-bindings
457460
cd ..
458461
git clone https://github.com/lightningdevkit/ldk-c-bindings
459462
cd ldk-c-bindings
460-
git checkout 0.0.117
463+
git checkout 0.0.118
461464
cd lightning-c-bindings
462465
. $HOME/.cargo/env
463466
cargo update -p memchr --precise "2.5.0" --verbose
@@ -529,11 +532,11 @@ jobs:
529532
# Note this is a different endpoint, as we need one non-upstream commit!
530533
git clone https://github.com/rghtningdevkit/ust-lightning
531534
cd rust-lightning
532-
git checkout origin/0.0.117-bindings
535+
git checkout origin/0.0.118-bindings
533536
cd ..
534537
git clone https://github.com/lightningdevkit/ldk-c-bindings
535538
cd ldk-c-bindings
536-
git checkout 0.0.117
539+
git checkout 0.0.118
537540
cd lightning-c-bindings
538541
cargo update -p memchr --precise "2.5.0" --verbose
539542
- name: Rebuild C bindings and check the sample app builds + links

build-release-jar.sh

+2-22
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ ls src/main/resources/liblightningjni_MacOSX-aarch64.nativelib
1212
export LC_ALL=C
1313

1414
# We need to fetch dependencies first as faketime will break PKI cert checks!
15-
mvn -DskipTests=true -Dorg.lightningdevkit.skipdocs=false package
15+
mvn -DskipTests=true package
1616
mvn clean
17-
faketime 2021-01-01 mvn -DskipTests=true -Dorg.lightningdevkit.skipdocs=false package
17+
faketime 2021-01-01 mvn -DskipTests=true package
1818

1919
mkdir ziptmp
2020
cd ziptmp
@@ -26,26 +26,6 @@ rm ../target/ldk-java-*-sources.jar
2626
cd ..
2727
rm -r ziptmp
2828

29-
mkdir ziptmp
30-
cd ziptmp
31-
unzip ../target/ldk-java-*-javadoc.jar | grep inflating | awk '{ print $2 }' | sort > ../javadoc-zip-files.txt
32-
find . | grep '.html$' | xargs -L1 sed -i 's/Generated by javadoc \(.*\) on Fri Jan 01 .* UTC 2021/Generated by javadoc \1 on Fri Jan 01 00:00:00 UTC 2021/g'
33-
for ZIP in *.zip; do
34-
mkdir ziptmptmp
35-
cd ziptmptmp
36-
unzip ../$ZIP | grep inflating | awk '{ print $2 }' | sort > ../../javadoc-zip-zip-files.txt
37-
rm ../$ZIP
38-
touch -d "2021-01-01 00:00 UTC" $(cat ../../javadoc-zip-zip-files.txt)
39-
cat ../../javadoc-zip-zip-files.txt | zip -X@ ../$ZIP
40-
cd ..
41-
rm -r ziptmptmp
42-
done
43-
touch -d "2021-01-01 00:00 UTC" $(cat ../javadoc-zip-files.txt)
44-
cat ../javadoc-zip-files.txt | grep -v nativelib | zip -X@ ../ldk-java-javadoc.jar
45-
rm ../target/ldk-java-*-javadoc.jar
46-
cd ..
47-
rm -r ziptmp
48-
4929
mkdir ziptmp
5030
cd ziptmp
5131
unzip ../target/ldk-java-*.jar | grep inflating | awk '{ print $2 }' | sort > ../classes-zip-files.txt

csharp_strings.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ def __init__(self, DEBUG: bool, target: Target, **kwargs):
440440
self.usize_c_ty = "int64_t"
441441
self.usize_native_ty = "long"
442442
self.native_zero_ptr = "0"
443-
self.result_c_ty = "jclass"
443+
self.unitary_enum_c_ty = "int32_t"
444444
self.ptr_arr = "jobjectArray"
445445
self.is_arr_some_check = ("", " != NULL")
446446
self.get_native_arr_len_call = ("(*env)->GetArrayLength(env, ", ")")
@@ -1033,7 +1033,7 @@ def map_complex_enum(self, struct_name, variant_list, camel_to_snake, enum_doc_c
10331033
out_c += "\t" + struct_name + " *obj = (" + struct_name + "*)untag_ptr(ptr);\n"
10341034
out_c += f"\tassert(obj->tag == {struct_name}_{var.var_name});\n"
10351035
if field_map.ret_conv is not None:
1036-
out_c += ("\t\t\t" + field_map.ret_conv[0].replace("\n", "\n\t\t\t"))
1036+
out_c += ("\t" + field_map.ret_conv[0].replace("\n", "\n\t"))
10371037
if var.tuple_variant:
10381038
out_c += "obj->" + camel_to_snake(var.var_name)
10391039
else:

genbindings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ def java_c_types(fn_arg, ret_arr_len):
384384
assert ma.group(1).strip().startswith("LDK")
385385
java_ty = ma.group(1).strip()[3:]
386386
java_hu_ty = java_ty
387-
c_ty = consts.result_c_ty
387+
c_ty = consts.unitary_enum_c_ty
388388
fn_ty_arg = "Lorg/ldk/enums/" + java_ty + ";"
389389
fn_arg = ma.group(2).strip()
390390
rust_obj = ma.group(1).strip()

genbindings.sh

-52
Original file line numberDiff line numberDiff line change
@@ -280,62 +280,10 @@ else
280280
LDK_LIB="$1"/lightning-c-bindings/target/$LDK_TARGET/release/libldk.a
281281
if [ "$IS_MAC" = "false" -a "$4" = "false" ]; then
282282
LINK="$LINK -Wl,--version-script=libcode.version -fuse-ld=lld"
283-
# __cxa_thread_atexit_impl is used to more effeciently cleanup per-thread local storage by rust libstd.
284-
# However, it is not available on glibc versions 2.17 or earlier, and rust libstd has a null-check and
285-
# fallback in case it is missing.
286-
# Because it is weak-linked on the rust side, we should be able to simply define it
287-
# explicitly, forcing rust to use the fallback. However, for some reason involving ancient
288-
# dark magic and haunted code segments, overriding the weak symbol only impacts sites which
289-
# *call* the symbol in question, not sites which *compare with* the symbol in question.
290-
# This means that the NULL check in rust's libstd will always think the function is
291-
# callable while the function which is called ends up being NULL (leading to a jmp to the
292-
# zero page and a quick SEGFAULT).
293-
# This issue persists not only with directly providing a symbol, but also ld.lld's -wrap
294-
# and --defsym arguments.
295-
# In smaller programs, it appears to be possible to work around this with -Bsymbolic and
296-
# -nostdlib, however when applied the full-sized JNI library here it no longer works.
297-
# After exhausting nearly every flag documented in lld, the only reliable method appears
298-
# to be editing the LDK binary. Luckily, LLVM's tooling makes this rather easy as we can
299-
# disassemble it into very readable code, edit it, and then reassemble it.
300-
# Note that if we do so we don't have to bother overriding the actual call, LLVM should
301-
# optimize it away, which also provides a good check that there isn't anything actually
302-
# relying on it elsewhere.
303-
[ ! -f "$1"/lightning-c-bindings/target/$LDK_TARGET/release/libldk.a ] && exit 1
304-
if [ "$(ar t "$1"/lightning-c-bindings/target/$LDK_TARGET/release/libldk.a | grep -v "\.o$" || echo)" != "" ]; then
305-
echo "Archive contained non-object files!"
306-
exit 1
307-
fi
308-
if [ "$(ar t "$1"/lightning-c-bindings/target/$LDK_TARGET/release/libldk.a | grep ldk.*-cgu.*.rcgu.o | wc -l)" != "1" ]; then
309-
echo "Archive contained more than one LDK object file"
310-
exit 1
311-
fi
312-
mkdir -p tmp
313-
rm -f tmp/*
314-
ar x --output=tmp "$1"/lightning-c-bindings/target/$LDK_TARGET/release/libldk.a
315-
pushd tmp
316-
llvm-dis ldk*-cgu.*.rcgu.o
317-
sed -i 's/br i1 icmp eq (i8\* @__cxa_thread_atexit_impl, i8\* null)/br i1 icmp eq (i8* null, i8* null)/g' ldk*-cgu.*.rcgu.o.ll
318-
llvm-as ldk*-cgu.*.rcgu.o.ll -o ./libldk.bc
319-
ar q libldk.a *.o
320-
popd
321-
LDK_LIB="tmp/libldk.bc tmp/libldk.a"
322283
fi
323284
$COMPILE -o bindings.o -c -O3 -I"$1"/lightning-c-bindings/include/ $2 src/main/jni/bindings.c
324285
$COMPILE $LINK -o liblightningjni_release$LDK_TARGET_SUFFIX.so -O3 -I"$1"/lightning-c-bindings/include/ $2 bindings.o $LDK_LIB -lm
325286
[ "$IS_APPLE_CLANG" != "true" ] && llvm-strip liblightningjni_release$LDK_TARGET_SUFFIX.so
326-
if [ "$IS_MAC" = "false" -a "$4" = "false" ]; then
327-
GLIBC_SYMBS="$(objdump -T liblightningjni_release$LDK_TARGET_SUFFIX.so | grep GLIBC_ | grep -v "GLIBC_2\.2\." | grep -v "GLIBC_2\.3\(\.\| \)" | grep -v "GLIBC_2.\(14\|17\) " || echo)"
328-
if [ "$GLIBC_SYMBS" != "" ]; then
329-
echo "Unexpected glibc version dependency! Some users need glibc 2.17 support, symbols for newer glibcs cannot be included."
330-
echo "$GLIBC_SYMBS"
331-
exit 1
332-
fi
333-
REALLOC_ARRAY_SYMBS="$(objdump -T liblightningjni_release$LDK_TARGET_SUFFIX.so | grep reallocarray || echo)"
334-
if [ "$REALLOC_ARRAY_SYMBS" != "" ]; then
335-
echo "Unexpected reallocarray dependency!"
336-
exit 1
337-
fi
338-
fi
339287
if [ "$LDK_JAR_TARGET" = "true" ]; then
340288
# Copy to JNI native directory for inclusion in JARs
341289
mkdir -p src/main/resources/

java_strings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ class CommonBase {
627627
self.usize_c_ty = "int64_t"
628628
self.usize_native_ty = "long"
629629
self.native_zero_ptr = "0"
630-
self.result_c_ty = "jclass"
630+
self.unitary_enum_c_ty = "jclass"
631631
self.ptr_arr = "jobjectArray"
632632
self.is_arr_some_check = ("", " != NULL")
633633
self.get_native_arr_len_call = ("(*env)->GetArrayLength(env, ", ")")

python_strings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ def __init__(self, DEBUG: bool, target: Target, outdir: str, **kwargs):
679679
self.usize_c_ty = "uint32_t"
680680
self.usize_native_ty = "number"
681681
self.native_zero_ptr = "0n"
682-
self.result_c_ty = "uint32_t"
682+
self.unitary_enum_c_ty = "uint32_t"
683683
self.ptr_arr = "ptrArray"
684684
self.is_arr_some_check = ("", " != 0")
685685
self.get_native_arr_len_call = ("", "->arr_len")

src/main/java/org/ldk/batteries/ChannelManagerConstructor.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ public static class InvalidSerializedDataException extends Exception {
5454
public PeerManager peer_manager = null;
5555
/**
5656
* A NioPeerHandler which manages a background thread to handle socket events and pass them to the peer_manager.
57-
*
58-
* This is `null` until `chain_sync_completed` is called.
57+
*
58+
* This is `null` until `chain_sync_completed` is called.
5959
*/
6060
public NioPeerHandler nio_peer_handler = null;
6161

@@ -288,8 +288,9 @@ public void chain_sync_completed(EventHandler event_handler, boolean use_p2p_gra
288288
routing_msg_handler = graph_msg_handler.as_RoutingMessageHandler();
289289
else
290290
routing_msg_handler = ignoring_handler.as_RoutingMessageHandler();
291+
OnionMessenger messenger = OnionMessenger.of(this.entropy_source, this.node_signer, this.logger, DefaultMessageRouter.of().as_MessageRouter(), channel_manager.as_OffersMessageHandler(), IgnoringMessageHandler.of().as_CustomOnionMessageHandler());
291292
this.peer_manager = PeerManager.of(channel_manager.as_ChannelMessageHandler(),
292-
routing_msg_handler, ignoring_handler.as_OnionMessageHandler(),
293+
routing_msg_handler, messenger.as_OnionMessageHandler(),
293294
ignoring_handler.as_CustomMessageHandler(), (int)(System.currentTimeMillis() / 1000),
294295
this.entropy_source.get_secure_random_bytes(), logger, this.node_signer);
295296

0 commit comments

Comments
 (0)