From 5f62838e38d8de27b53613c024acff3da1c442e7 Mon Sep 17 00:00:00 2001 From: msizov Date: Tue, 7 May 2024 01:25:32 +0700 Subject: [PATCH] Fix no-str subscribe implementation (#466) Co-authored-by: Mike Sizov --- src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeSubscribe.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeSubscribe.kt b/src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeSubscribe.kt index b8947522f..fffe6a79f 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeSubscribe.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeSubscribe.kt @@ -119,7 +119,7 @@ open class NativeSubscribe( } } open fun subscribe(chain: Chain, method: String, params: Any?, matcher: Selector.Matcher): Flux = - subscribe(chain, method, params, matcher) + subscribe(chain, method, params, matcher, "") open fun subscribe(chain: Chain, method: String, params: Any?, matcher: Selector.Matcher, subscriptionId: String): Flux = getUpstream(chain).getEgressSubscription()