From d5414f947e118d15a627e54eefda435aa32c9fb8 Mon Sep 17 00:00:00 2001 From: KirillPamPam Date: Wed, 13 Mar 2024 16:00:11 +0400 Subject: [PATCH] Remove NativeCall sort (#437) --- src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeCall.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeCall.kt b/src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeCall.kt index 6ad6941e..af8890d8 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeCall.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeCall.kt @@ -81,7 +81,6 @@ open class NativeCall( open fun nativeCall(requestMono: Mono): Flux { return nativeCallResult(requestMono) - .sort { o1, o2 -> o1.id - o2.id } .flatMapSequential(this::processCallResult) .onErrorResume(this::processException) }