Remove NativeCall sort (#437)

This commit is contained in:
KirillPamPam
2024-03-13 16:00:11 +04:00
committed by GitHub
parent 0cfff64c4c
commit d5414f947e

View File

@@ -81,7 +81,6 @@ open class NativeCall(
open fun nativeCall(requestMono: Mono<BlockchainOuterClass.NativeCallRequest>): Flux<BlockchainOuterClass.NativeCallReplyItem> {
return nativeCallResult(requestMono)
.sort { o1, o2 -> o1.id - o2.id }
.flatMapSequential(this::processCallResult)
.onErrorResume(this::processException)
}