From 1698bf7002a9e2fb2ebc6460e5af8757f4f2203a Mon Sep 17 00:00:00 2001 From: a10zn8 Date: Thu, 23 Feb 2023 14:33:35 +0500 Subject: [PATCH] Upstream enhancement improvement: (#147) - now we don't enrich PoS blocks - now is default --- .../dshackle/upstream/ethereum_pos/EthereumPosRpcUpstream.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum_pos/EthereumPosRpcUpstream.kt b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum_pos/EthereumPosRpcUpstream.kt index 3808d238..17e8c5bb 100644 --- a/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum_pos/EthereumPosRpcUpstream.kt +++ b/src/main/kotlin/io/emeraldpay/dshackle/upstream/ethereum_pos/EthereumPosRpcUpstream.kt @@ -46,7 +46,7 @@ open class EthereumPosRpcUpstream( ) : EthereumPosUpstream(id, hash, options, role, targets, node, chainConfig), Lifecycle, Upstream, CachesEnabled { private val log = LoggerFactory.getLogger(EthereumPosRpcUpstream::class.java) private val validator: EthereumUpstreamValidator = EthereumUpstreamValidator(this, getOptions()) - private val connector: EthereumConnector = connectorFactory.create(this, validator, chain, false) + private val connector: EthereumConnector = connectorFactory.create(this, validator, chain, true) private var validatorSubscription: Disposable? = null