From 8fa62a569dc3fd15a7bae186e0b36ef3ac4ff240 Mon Sep 17 00:00:00 2001 From: Andrey Bronin Date: Mon, 14 Apr 2025 19:24:23 +0300 Subject: [PATCH] enable reth for eth_simulateV1 (#653) --- .../emeraldpay/dshackle/upstream/UpstreamRpcMethodsDetector.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/UpstreamRpcMethodsDetector.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/UpstreamRpcMethodsDetector.kt index f4f36f33..215f3faf 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/UpstreamRpcMethodsDetector.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/UpstreamRpcMethodsDetector.kt @@ -25,7 +25,7 @@ abstract class UpstreamRpcMethodsDetector( private val availableRegexps = listOf( "missing value for required argument ([0-9]+)", -// "Invalid params", // todo: uncomment when reth node issue will be fixed + "Invalid params", ).map { s -> s.toRegex() } open fun detectRpcMethods(): Mono> = detectByMagicMethod().switchIfEmpty(detectByMethod())