Upstream enhancement improvement: (#147)

- now we don't enrich PoS blocks - now is default
This commit is contained in:
a10zn8
2023-02-23 14:33:35 +05:00
committed by GitHub
parent 312293d626
commit 1698bf7002

View File

@@ -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