From f3ce82f080f2790846470e7de0c39f0bb2f3c3b0 Mon Sep 17 00:00:00 2001 From: a10zn8 Date: Fri, 11 Nov 2022 17:57:21 +0400 Subject: [PATCH] add missed method to createFilterMethods --- src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeCall.kt | 3 ++- 1 file changed, 2 insertions(+), 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 33e29573..e4873a36 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeCall.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/rpc/NativeCall.kt @@ -384,7 +384,8 @@ open class NativeCall( val createFilterMethods = listOf( "eth_getFilterChanges", "eth_newFilter", - "eth_newBlockFilter" + "eth_newBlockFilter", + "eth_newPendingTransactionFilter" ) } override fun processResult(result: QuorumRpcReader.Result): ByteArray {